1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00
docs/src/components/Header.module.scss

51 lines
801 B
SCSS

@import 'variables';
.header {
background: $brand-black;
width: 100%;
padding: $spacer / 2 0;
padding-right: $spacer / 1.5;
}
.headerContent {
composes: content from './Content.module.scss';
display: flex;
justify-content: space-between;
align-items: center;
}
.headerLogo {
display: flex;
align-items: center;
width: 50%;
cursor: pointer;
&:hover,
&:focus,
&:active {
transform: none;
}
}
.headerLogoImage {
width: 4rem;
height: 4rem;
fill: #fff;
margin: 0;
}
.headerTitle {
font-size: $font-size-h4;
color: $brand-white;
margin-left: $spacer;
display: none;
@media (min-width: $break-point--small) {
display: inline-block;
}
}
.headerMenu {
justify-self: flex-end;
}