fix of results size

This commit is contained in:
Martin Quarda 2024-05-06 14:51:43 +02:00
parent 8956522bab
commit 082cef2d06
2 changed files with 9 additions and 1 deletions

View File

@ -161,7 +161,7 @@ class Main extends Component {
</div>
<div class="col-xl-6">
{this.state.results &&
<table class="table text">
<table class="table results">
<thead>
<th>Umístění</th>
<th>Čas</th>

View File

@ -40,6 +40,14 @@ form.container{
border-radius: 10px;
}
.results {
margin: 10px auto;
background:rgba(255,255,255,0.7);
padding: 10px;
font-size: 1.1em;
border-radius: 10px;
}
.video{
margin-top: 30px;
}