Использую технологию БЭМ, при верстке header не могу применить к элементу
display: flex
flex-direction: column
Элементы по прежнему располагаются в строку
HTML
<div class="promo">
<div class="container">
<header class="header">
<a href="#" class="header__logo">
<img src="icons/logo.png" alt="logo">
</a>
<div class="header__official">
Официальный представитель
<span>Garmin, Polar, Suunto</span>
</div>
<div class="header__contacts">
<div class="header__phone">
<a href="tel:+74999228974">
+74999228974
</a>
<button class="button">заказать звонок</button>
</div>
</div>
</header>
</div>
</div>
Вот scss файл header
.header {
display: flex;
justify-content: space-between;
align-items: center;
&__logo{
width: 250px;
img{
width: 100%;
}
}
&__contacts {
display: flex;
flex-direction: column;
align-items: flex-end;
}
&__official {
color: #fff;
display: block;
font-size: 12px;
font-weight: 500;
text-align: center;
span {
display: block;
font-size: 18px;
}
}
&__phone {
display: block;
color: #fff;
font-size: 18px;
font-weight: 700;
&:hover {
color: #fff;
text-decoration: none;
}
}
}
Номер телефона должен располагаться над кнопкой