Skip to content

Commit

Permalink
run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
simenandre committed Jun 25, 2023
1 parent b927621 commit a59ce22
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/components/header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<ul>
<li><a href="/about">Om oss</a></li>
<li><a href="/projects">Prosjekter</a></li>
<li><a href="/contact">Kontakt</a></li>
<li><a href="/contact">Kontakt</a></li>
</ul>
</nav>
</header>
Expand Down
2 changes: 1 addition & 1 deletion src/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ $green100: rgba(144, 244, 148, 1);
:global(html, body) {
max-width: 100vw;
overflow-x: hidden;
font-size: 18px;
font-size: 18px;

font-family: 'Sora Variable', system-ui, -apple-system, sans-serif;

Expand Down
16 changes: 8 additions & 8 deletions src/styles/mixins.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@mixin button {
box-shadow: var(--border-radius-base);
border: 0px;
border: 0px;

cursor: pointer;
display: inline-block;
Expand All @@ -9,20 +9,20 @@
text-decoration: none;

padding: var(--size-base) var(--size-md);
background-color: transparent;
background-color: transparent;
border: 0.15rem solid var(--foreground-color);
color: var(--text-color);
font-size: var(--font-size-base);
border-radius: 80px;
font-size: var(--font-size-base);
border-radius: 80px;

transition: background-color 0.2s, transform 0.2s, border-color 0.2s;
transition: background-color 0.2s, transform 0.2s, border-color 0.2s;

&:hover {
text-decoration: none;

background-color: var(--green100);
transform: scale(1.15) rotate(-3deg);
border-color: transparent;
background-color: var(--green100);
transform: scale(1.15) rotate(-3deg);
border-color: transparent;
}

&:active {
Expand Down
2 changes: 1 addition & 1 deletion svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const config = {
alias: {
$assets: './src/assets',
$components: './src/components',
$styles: './src/styles',
$styles: './src/styles'
}

// csp: {
Expand Down

0 comments on commit a59ce22

Please sign in to comment.