mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 08:54:13 +00:00
27 lines
498 B
CSS
27 lines
498 B
CSS
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 28px;
|
|
|
|
& .button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 45px;
|
|
font-weight: 500;
|
|
color: var(--color-neutral-50);
|
|
cursor: pointer;
|
|
background-color: var(--color-neutral-950);
|
|
border: none;
|
|
border-radius: 4px;
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
.timeFields {
|
|
display: flex;
|
|
column-gap: 12px;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
}
|