23 lines
292 B
CSS
23 lines
292 B
CSS
.branding {
|
|
margin: 40px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
min-height: 60px;
|
|
|
|
&__backlink {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
&__logo {
|
|
flex: 0 0 200px;
|
|
& img {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
flex: 0 1 auto;
|
|
}
|
|
}
|