mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
21 lines
378 B
SCSS
21 lines
378 B
SCSS
.wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
& > * {
|
|
border-radius: 0;
|
|
box-shadow: transparentize($color: #000000, $amount: 0.1) 1px 0;
|
|
|
|
&:last-child {
|
|
border-radius: 0 $input_radius $input_radius 0;
|
|
|
|
&.small {
|
|
border-radius: 0 3px 3px 0;
|
|
}
|
|
}
|
|
|
|
&:first-child {
|
|
border-radius: $input_radius 0 0 $input_radius;
|
|
}
|
|
}
|
|
}
|