2023-11-09 17:10:13 +03:00
|
|
|
@mixin hide-scroll {
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
|
|
|
|
-ms-overflow-style: none; // Edge
|
|
|
|
scrollbar-width: none; // Firefox
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin border-first-last($radius) {
|
|
|
|
&:first-child {
|
|
|
|
border-top-left-radius: $radius;
|
|
|
|
border-top-right-radius: $radius;
|
|
|
|
border-bottom-right-radius: 0px;
|
|
|
|
border-bottom-left-radius: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-top-right-radius: 0px;
|
|
|
|
border-top-left-radius: 0px;
|
|
|
|
border-bottom-left-radius: $radius;
|
|
|
|
border-bottom-right-radius: $radius;
|
|
|
|
}
|
2023-11-09 18:56:57 +03:00
|
|
|
|
2023-11-09 17:10:13 +03:00
|
|
|
&:only-child {
|
|
|
|
border-top-right-radius: $radius;
|
|
|
|
border-top-left-radius: $radius;
|
|
|
|
border-bottom-left-radius: $radius;
|
|
|
|
border-bottom-right-radius: $radius;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin border-2x2($radius) {
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-top-right-radius: 0px;
|
|
|
|
border-top-left-radius: $radius;
|
|
|
|
border-bottom-left-radius: 0px;
|
|
|
|
border-bottom-right-radius: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
border-top-right-radius: $radius;
|
|
|
|
border-top-left-radius: 0px;
|
|
|
|
border-bottom-left-radius: 0px;
|
|
|
|
border-bottom-right-radius: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-last-child(2) {
|
|
|
|
border-top-right-radius: 0px;
|
|
|
|
border-top-left-radius: 0px;
|
|
|
|
border-bottom-left-radius: $radius;
|
|
|
|
border-bottom-right-radius: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-top-right-radius: 0px;
|
|
|
|
border-top-left-radius: 0px;
|
|
|
|
border-bottom-left-radius: 0px;
|
|
|
|
border-bottom-right-radius: $radius;
|
|
|
|
}
|
2023-11-09 18:56:57 +03:00
|
|
|
}
|
2023-11-09 17:10:13 +03:00
|
|
|
|
2023-11-09 18:56:57 +03:00
|
|
|
@mixin border-linear($radius) {
|
|
|
|
&:first-child {
|
|
|
|
border-top-left-radius: $radius;
|
|
|
|
border-top-right-radius: 0px;
|
|
|
|
border-bottom-right-radius: 0px;
|
|
|
|
border-bottom-left-radius: $radius;
|
|
|
|
}
|
2023-11-09 17:10:13 +03:00
|
|
|
|
2023-11-09 18:56:57 +03:00
|
|
|
&:last-child {
|
|
|
|
border-top-right-radius: $radius;
|
|
|
|
border-top-left-radius: 0px;
|
|
|
|
border-bottom-left-radius: 0px;
|
|
|
|
border-bottom-right-radius: $radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:only-child {
|
|
|
|
border-top-right-radius: $radius;
|
|
|
|
border-top-left-radius: $radius;
|
|
|
|
border-bottom-left-radius: $radius;
|
|
|
|
border-bottom-right-radius: $radius;
|
|
|
|
}
|
2023-11-09 17:10:13 +03:00
|
|
|
}
|