mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-26 05:16:41 +07:00
17 lines
325 B
SCSS
17 lines
325 B
SCSS
.wrap {
|
|
background: $content_bg;
|
|
border-radius: $radius;
|
|
|
|
& > div {
|
|
@include outer_shadow();
|
|
|
|
&:first-child {
|
|
border-top-left-radius: $radius;
|
|
border-top-right-radius: $radius;
|
|
}
|
|
&:last-child {
|
|
border-bottom-left-radius: $radius;
|
|
border-bottom-right-radius: $radius;
|
|
}
|
|
}
|
|
}
|