.l-theme {
- display: flex;
+ display: flex;
+ flex-direction: column;
+
+ @include rwd($break-flow) {
+ flex-direction: row;
+ }
}
.l-theme__col {
border-radius: 10px;
background-color: #E1F1F2;
margin-top: 34px;
- max-width: 415px;
+ @include rwd($break-flow) {
+ max-width: 415px;
+ }
+
h3 {
display: flex;
align-content: center;
max-width: 100%;
margin-right: 17px;
}
-}
\ No newline at end of file
+}