31 lines
639 B
SCSS
31 lines
639 B
SCSS
![]() |
div.osnovne_nastavitve {
|
||
|
|
||
|
width: fit-content; //ne deluje, če želimo, da so nastavitve enako poravnane v vseh fieldsetih
|
||
|
|
||
|
div.osnovne_nastavitve_single {
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
|
justify-content: flex-end;
|
||
|
|
||
|
margin-bottom: 16px;
|
||
|
&:last-of-type {
|
||
|
margin-bottom: 0px;
|
||
|
}
|
||
|
|
||
|
label {
|
||
|
margin-right: 8px;
|
||
|
cursor: default;
|
||
|
}
|
||
|
|
||
|
input,
|
||
|
select {
|
||
|
width: 206px;
|
||
|
height: 28px;
|
||
|
margin: 0 !important;
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|