Files

54 lines
894 B
CSS

body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #404040;
height: 100%;
}
.container {
display: flex;
/*height: 80vh;*/
}
.side {
flex: 1;
padding: 10px;
border-right: 1px solid #ccc;
}
.clan-selection {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.player-list {
list-style: none;
height: 60%;
overflow-y: auto;
border: 1px solid #ccc;
padding: 5px;
}
.list-controls {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 10px;
}
.bottom-controls {
display: flex;
justify-content: space-between;
padding: 10px;
}
.settings-btn, .calculate-btn, .single-request-btn {
cursor: pointer;
}
.form-control.overflow-auto {
height: auto; /* Adjust as needed */
max-height: 300px; /* Adjust as needed */
}