<button
type="button"
class="btn btn-danger"
v-if="!tipStrah"
@click="tipStrah = tipStrah + 1"
>ОМС</button>
<button
type="button"
class="btn btn-light"
v-if="tipStrah"
@click="tipStrah = !tipStrah"
>ОМС</button>
<button
type="button"
class="btn"
:class="tipStrah ? 'btn-light' : 'btn-danger'"
@click="tipStrah = !tipStrah"
>ОМС</button>
. Реализовать через следующую структуру: .container -> .row -> .col-md-12 -> .bgWhite -> .row -> .col-md...
[...] с его помощью получаю то, что нужно.
:root {
}
html {
font-size: 100%;
line-height: (4/3);
}
body {
min-height: 100vh;
font-size: rem($font-size-base);
font-family: $font-family-base;
}
.container {
@include make-container();
@include make-container-max-widths();
}
.row {
@include make-row();
}
Как сделать так чтобы колонки по бокам на любой странице сайта были на равне с подвалом?