27 lines
473 B
SCSS
27 lines
473 B
SCSS
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.profile {
|
|
font-size: 12px;
|
|
color: #000;
|
|
padding-right: 12px;
|
|
position: relative;
|
|
|
|
&:after {
|
|
content: "";
|
|
top: 2px;
|
|
right: 0;
|
|
position: absolute;
|
|
transform: rotate(135deg);
|
|
width: 5px;
|
|
height: 5px;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
border-top: 1px solid #000;
|
|
border-right: 1px solid #000;
|
|
color: transparent;
|
|
}
|
|
} |