mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* feat: implement mobile header * chore: remove remaining ties to old ui project * chore: remove ionic from login page * chore: address comments
34 lines
512 B
SCSS
34 lines
512 B
SCSS
.card {
|
|
border-radius: 0.25rem;
|
|
padding: 1rem;
|
|
margin: 1.5rem;
|
|
text-align: center;
|
|
// TODO: Theme
|
|
background: #e0e0e0;
|
|
color: #333;
|
|
--tui-clear-inverse: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.title {
|
|
font-size: 2.5rem;
|
|
margin: 1rem;
|
|
}
|
|
|
|
.progress {
|
|
max-width: 40rem;
|
|
margin: 1rem auto;
|
|
}
|
|
|
|
.logs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 18rem;
|
|
padding: 1rem;
|
|
margin: 0 1.5rem auto;
|
|
text-align: left;
|
|
overflow: hidden;
|
|
border-radius: 2rem;
|
|
// TODO: Theme
|
|
background: #181818;
|
|
}
|