mirror of
https://github.com/misenhower/splatoon2.ink.git
synced 2026-07-17 18:56:29 -05:00
26 lines
427 B
SCSS
26 lines
427 B
SCSS
// Generic boxes
|
|
.product-box {
|
|
@extend .bg-mask-product;
|
|
border-radius: 32px;
|
|
padding-top: 35px;
|
|
}
|
|
|
|
.hook-box {
|
|
border-radius: 32px;
|
|
padding: 10px;
|
|
overflow: hidden;
|
|
|
|
&:before {
|
|
content: "";
|
|
position: absolute;
|
|
background-position-y: bottom !important;
|
|
|
|
width: 100%;
|
|
height: 29px;
|
|
top: -28px;
|
|
left: 0;
|
|
|
|
@extend .bg-mask-hook;
|
|
}
|
|
}
|