Padel-Tournaments-System/frontend/sandbox_api/styles.css
Arek a4a9c1c640 feat: connected main page to api
On main page now we can see all of tournaments from api
2022-06-08 22:33:19 +02:00

34 lines
480 B
CSS

body {
margin: 0;
}
.nav {
width: 100%;
height: 50px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.tournament-list {
width: 50%;
height: auto;
background-color: #0B4D39;
}
.tournament-info {
height: auto;
background-color: lightblue;
}
.tournament {
border: 1px;
border-style: solid;
}