20 lines
264 B
CSS
20 lines
264 B
CSS
.branding {
|
|
margin: 40px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
&__logo {
|
|
flex: 0 0 200px;
|
|
& img {
|
|
display: block;
|
|
width: 150px;
|
|
height: 60px;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
flex: 0 1 auto;
|
|
}
|
|
}
|