mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2026-01-02 13:35:02 +08:00
added start test button to lobby
This commit is contained in:
parent
c7c5ee0b2f
commit
a7dd0c71ad
2 changed files with 13 additions and 4 deletions
|
|
@ -2379,6 +2379,17 @@ key {
|
|||
}
|
||||
.lobbyButtons{
|
||||
grid-area: lobbyButtons;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
.startTestButton{
|
||||
background: var(--main-color);
|
||||
color: var(--bg-color);
|
||||
&:hover{
|
||||
background: var(--text-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
.currentSettings{
|
||||
grid-area: currentsettings;
|
||||
|
|
@ -2447,7 +2458,7 @@ key {
|
|||
|
||||
.pageAccount {
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
gap: 1rem;
|
||||
|
||||
.content {
|
||||
display: grid;
|
||||
|
|
|
|||
|
|
@ -3047,6 +3047,7 @@
|
|||
<div class="groups"></div>
|
||||
</div>
|
||||
<div class="lobbyButtons">
|
||||
<div class="button startTestButton"><i class="fas fa-keyboard"></i>Start test</div>
|
||||
<div class="button leaveRoomButton"><i class="fas fa-door-open"></i>Leave room</div>
|
||||
</div>
|
||||
<div class="chat">
|
||||
|
|
@ -3145,9 +3146,6 @@
|
|||
<script src="js/moment.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.3.0/socket.io.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/seedrandom/3.0.5/seedrandom.min.js" integrity="sha512-+Ru50BzEpZjlFzVnjSmJfYFPFfY2hS0Kjlu/IvqaJoux7maF5lJrRVUJWJ2LevPls7rd242GLbWEt+zAo4OVVQ==" crossorigin="anonymous"></script>
|
||||
<script>
|
||||
Math.seedrandom('a');
|
||||
</script>
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.min.js"></script> -->
|
||||
<script src="js/chart.min.js"></script>
|
||||
<script src="js/chartjs-plugin-trendline.js"></script>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue