1
0
Fork 0
mirror of synced 2024-07-02 04:50:44 +12:00

fix inconsistencies in heights and paddings

This commit is contained in:
kevmodrome 2020-07-10 11:05:58 +02:00
parent 2134d38fb9
commit bea29bd392
No known key found for this signature in database
GPG key ID: E8F9CD141E63BF38
2 changed files with 21 additions and 5 deletions

View file

@ -39,4 +39,16 @@
grid-gap: 18px;
grid-template-columns: 1fr 1fr 1fr;
}
.inputs :global(input) {
padding: 10px 12px;
border-radius: var(--rounded-small);
}
.inputs :global(select) {
padding: 9px 12px;
border-radius: var(--rounded-small);
}
.inputs :global(button) {
border-radius: var(--rounded-small);
height: initial;
}
</style>

View file

@ -103,16 +103,12 @@
display: grid;
grid-gap: 12px;
border-radius: 5px;
background-color: var(--grey-2);
background-color: var(--grey-1);
padding: 12px 12px 18px 12px;
}
.background.create {
background-color: var(--blue-light);
}
.inputs :global(select) {
padding: 12px 9px;
height: initial;
}
.create-button {
position: absolute;
top: 12px;
@ -132,6 +128,14 @@
grid-gap: 18px;
grid-template-columns: 1fr 1fr 1fr;
}
.inputs :global(input) {
padding: 10px 12px;
border-radius: var(--rounded-small);
}
.inputs :global(select) {
padding: 9px 12px;
border-radius: var(--rounded-small);
}
ul {
list-style: none;
padding: 0;