37 lines
637 B
SCSS
37 lines
637 B
SCSS
// Header Buttons
|
|
|
|
.header-btn-lg {
|
|
padding-inline-start: ($layout-spacer-x);
|
|
margin-inline-start: ($layout-spacer-x);
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
|
|
&::before {
|
|
position: absolute;
|
|
left: -1px;
|
|
top: 50%;
|
|
background: $border-color;
|
|
width: 1px;
|
|
height: 30px;
|
|
margin-top: -15px;
|
|
content: '';
|
|
}
|
|
|
|
.hamburger-inner,
|
|
.hamburger-inner::before,
|
|
.hamburger-inner::after {
|
|
background: $gray-600;
|
|
}
|
|
}
|
|
|
|
[dir='rtl'] .header-btn-lg {
|
|
padding-inline-start: ($layout-spacer-x) !important;
|
|
|
|
&::before {
|
|
position: absolute;
|
|
left: unset;
|
|
right: -1px;
|
|
}
|
|
}
|