Add download button & make install text look how it should

This commit is contained in:
2025-07-17 19:31:23 -07:00
parent c0a2ea36fa
commit bded72694c
5 changed files with 12 additions and 13 deletions

View File

@@ -1,15 +1,15 @@
@use 'tailwindcss' as *; @use 'tailwindcss' as *;
@use '@fontsource/roboto' as *; @use '@fontsource/roboto' as *;
$backgroundColor: #131313;
body { body {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
background-color: $backgroundColor; @apply bg-[#131313] text-white select-none;
color: white;
user-select: none;
} }
img { img {
pointer-events: none; @apply pointer-events-none;
}
.button {
@apply bg-[#0a6ec8] rounded-lg cursor-pointer text-[16px] p-1.5;
} }

View File

@@ -1 +0,0 @@
@use 'tailwindcss' as *;

View File

@@ -1,9 +1,12 @@
import './Installs.scss'
export default function Installs () { export default function Installs () {
function downloadVersion() {
}
return ( return (
<> <>
<p>Installs</p> <p className='text-3xl ml-4 mt-4'>Installs</p>
<button className='button text-3xl mt-4 absolute right-4 top-4' onClick={downloadVersion}>Download new version</button>
</> </>
) )
} }

View File

@@ -1 +0,0 @@
@use 'tailwindcss' as *;

View File

@@ -1,5 +1,3 @@
import './Settings.scss'
export default function Settings () { export default function Settings () {
return ( return (
<> <>