Files
test/src/styles/components/layout.scss
T
Dmytro Tkachenko 9a138e53a9
Build Action / Run-Build (push) Successful in 3m7s
Actions
2024-10-22 22:44:24 +03:00

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;
}
}