at the end of the day, it was inevitable
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user