Skip to content

Commit

Permalink
fix common styles
Browse files Browse the repository at this point in the history
  • Loading branch information
ninedev-i committed Jul 1, 2024
1 parent 0d0702b commit 6887297
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
19 changes: 12 additions & 7 deletions assets/css/globals.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
body {
main {
font-size: 18px;
line-height: 24px;
font-family: 'Plumb', sans-serif;
Expand All @@ -7,26 +7,31 @@ body {
max-width: 1280px;
}

p {
main p {
margin: 1.3em 0;
}

a {
main a {
color: var(--link-color);
text-decoration: none;
}

a:hover {
main a:hover {
text-decoration: underline;
}

details summary::-webkit-details-marker,
details summary::marker {
main details summary::-webkit-details-marker,
main details summary::marker {
display: none;
content: '';
}

hr {
main hr {
border-top: 1px solid var(--border-color);
border-left: 0;
margin: 9px 0
}

main h2 {
font-size: 27px;
}
4 changes: 3 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
ssr: true,
generate: {routes: ['/', '/jobs']},
generate: {
routes: ['/', '/jobs']
},
devtools: { enabled: false },
css: [
'~/assets/css/variables.css',
Expand Down

0 comments on commit 6887297

Please sign in to comment.