Skip to content

Commit

Permalink
chore: format scss files
Browse files Browse the repository at this point in the history
  • Loading branch information
janleigh committed Sep 3, 2023
1 parent d690e87 commit b19ab6d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
6 changes: 4 additions & 2 deletions src/styles/_app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
background-color: $border-inactive !important;
}

.terminal {
.terminal {
.prompt {
&::before {
content: "> ";
Expand All @@ -48,7 +48,9 @@
}

#about {
&:active, &:hover, &:focus {
&:active,
&:hover,
&:focus {
div {
color: $foreground-color !important;
}
Expand Down
15 changes: 10 additions & 5 deletions src/styles/_overrides.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,400;0,500;1,400;1,500&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,400;0,500;1,400;1,500&display=swap");
@import "./variables.scss";

:root {
Expand Down Expand Up @@ -37,7 +37,8 @@ a {
color: lighten($color: $accent, $amount: 20) !important;
}

&:active, &:focus {
&:active,
&:focus {
color: $accent !important;
}
}
Expand All @@ -53,7 +54,9 @@ a {
padding: 0px 6px;
}

&:hover, &:active, &:focus {
&:hover,
&:active,
&:focus {
border-color: $border-active;

legend {
Expand Down Expand Up @@ -105,7 +108,9 @@ a {
.navbar-item {
padding: 0rem 1rem 0.5rem;

&:hover, &:active, &:focus {
&:hover,
&:active,
&:focus {
color: $foreground-color !important;
background-color: transparent !important;
}
Expand Down
2 changes: 1 addition & 1 deletion src/styles/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$background-color: #121212;
$foreground-color: #FFFFFF;
$foreground-color: #ffffff;
$darker-foreground-color: #b3b3b3;

$accent: #1db954;
Expand Down

0 comments on commit b19ab6d

Please sign in to comment.