join/src/app/shared/components/header/header.component.scss
2024-03-23 16:15:55 +01:00

51 lines
892 B
SCSS

section {
height: 96px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
height: 93px;
box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
}
.headline {
align-self: center;
font-size: 20px;
padding-left: 116px;
}
.left-frame {
display: flex;
justify-content: center;
align-items: center;
padding-right: 20px;
}
.img-user {
display: flex;
justify-content: center;
align-items: center;
height: 40px;
width: 40px;
border: 2px solid var(--black);
border-radius: 25px;
background-color: var(--white);
color: var(--light-blue);
cursor: pointer;
&:hover {
background-color: var(--very-light-gray);
}
}
.img-help {
display: flex;
align-items: center;
width: 56px;
cursor: pointer;
&:hover {
filter: invert(60%) sepia(58%) saturate(1629%) hue-rotate(165deg)
brightness(92%) contrast(92%);
}
}