Воспроизведение проблемы
Проблема воспроизводится только тогда, когда на странице ровно 2 кнопки:
.outcomes {
display: grid;
grid-template-columns: 1fr;
width: 100%;
height: 200px;
}
.outcomebtn {
font-size: 20pt;
color: rgba(10, 99, 231, 0.829);
text-align: left;
font-size: 20px;
height: 65px;
background-color: transparent;
border-color: 2px lightgray;
}
<div class="outcomes">
<button class="outcomebtn">Outcome 1</button>
<button class="outcomebtn">Outcome 2</button>
</div>
Причина
Проблема возникает из-за того, что класс .outcomes
зафиксировал height
в 200px
.
Возможно решение
Одним из возможных решений является избавление от этой height
css -преимущества в классе .outcomes
вообще:
.outcomes {
display: grid;
grid-template-columns: 1fr;
width: 100%;
}
.outcomebtn {
font-size: 20pt;
color: rgba(10, 99, 231, 0.829);
text-align: left;
font-size: 20px;
height: 65px;
background-color: transparent;
border-color: 2px lightgray;
}
<div class="outcomes">
<button class="outcomebtn">Outcome 1</button>
<button class="outcomebtn">Outcome 2</button>
</div>