Files
test/src/styles/components/layout.scss
T

27 lines
473 B
SCSS
Raw Normal View History

2024-10-22 22:44:24 +03:00
.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;
}
}