Skip to content

Commit

Permalink
ref: Revert changes and make minimal fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samuveth committed Feb 5, 2024
1 parent f2d5665 commit 51df5c4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
10 changes: 10 additions & 0 deletions src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,16 @@ a,
@apply bg-skin-text animate-pulse-fast;
}

.hero {
background-repeat: repeat;
background-position: top center;
background-image: url('@/assets/grid-light.svg');
}

.dark .hero {
background-image: url('@/assets/grid-dark.svg');
}

.no-scrollbar::-webkit-scrollbar {
display: none;
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const COMMIT_SHA = import.meta.env.VITE_COMMIT_SHA || '';

<template>
<div>
<div class="py-8 mb-6 border-b dark:bg-hero-dark bg-hero-light bg-repeat bg-top">
<div class="py-8 mb-6 border-b hero">
<Container class="!max-w-screen-md my-1">
<h1 class="mb-4 mono max-w-[580px]">The governance stack for your organization.</h1>
<a href="https://tally.so/r/wA2D2o" target="_blank">
Expand Down
4 changes: 0 additions & 4 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ module.exports = {
},
animation: {
'pulse-fast': 'pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite'
},
backgroundImage: {
'hero-dark': "url('@/assets/grid-dark.svg')",
'hero-light': "url('@/assets/grid-light.svg')"
}
},
screens: {
Expand Down

0 comments on commit 51df5c4

Please sign in to comment.