init
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
.app {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.app-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 1rem 1.5rem;
|
||||
border-bottom: 1px solid #2a2f3a;
|
||||
background: #151922;
|
||||
}
|
||||
|
||||
.app-header h1 {
|
||||
margin: 0;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.app-header nav {
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.app-header nav a {
|
||||
padding: 0.45rem 0.9rem;
|
||||
border-radius: 8px;
|
||||
color: #a8b0bd;
|
||||
}
|
||||
|
||||
.app-header nav a.active {
|
||||
background: #2b3445;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.app-main {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
}
|
||||
Reference in New Issue
Block a user