42 lines
651 B
SCSS
42 lines
651 B
SCSS
.App {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 20px;
|
|
|
|
& > .stats {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 15px;
|
|
width: 100%;
|
|
|
|
& > .logo {
|
|
width: 75px;
|
|
}
|
|
}
|
|
|
|
& > .helpButton {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
align-items: center;
|
|
gap: 5px;
|
|
padding: 10px 15px;
|
|
border: 2px solid #f39440;
|
|
border-radius: 5px;
|
|
background-color: #ffdccb;
|
|
font-size: 0.9em;
|
|
font-weight: 600;
|
|
color: #f39440;
|
|
opacity: 0.7;
|
|
cursor: pointer;
|
|
transition: opacity 0.3s ease;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|