Add authentication pages and routing;
This commit is contained in:
parent
18bd3aa7e9
commit
ef85ff6d24
13 changed files with 661 additions and 28 deletions
|
|
@ -1,11 +1,45 @@
|
|||
// Header
|
||||
|
||||
@use '../base/settings' as *;
|
||||
@use '../utilities/mixins' as *;
|
||||
@use "../base/settings" as *;
|
||||
@use "../utilities/mixins" as *;
|
||||
|
||||
header {
|
||||
padding: $section-padding;
|
||||
h1 {
|
||||
@include flatten;
|
||||
padding: $section-padding;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid $grey;
|
||||
|
||||
h1 {
|
||||
@include flatten;
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: $dark;
|
||||
|
||||
&:hover {
|
||||
color: $yellow;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
nav {
|
||||
ul {
|
||||
@include flatten(true);
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
|
||||
li {
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: $dark;
|
||||
font-weight: bold;
|
||||
|
||||
&:hover {
|
||||
color: $yellow;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue