videoflix/frontend/src/app/shared/components/header/header.component.scss
2024-08-03 10:55:58 +02:00

23 lines
363 B
SCSS

@import "./../../../../assets/style/colors.scss";
header {
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
left: 0;
right: 0;
height: 88px;
padding: 10px 96px;
z-index: 1;
}
.logo {
cursor: pointer;
img {
filter: drop-shadow(1px 1px 3px $black);
width: 200px;
height: 32px;
}
}