Add download button & make install text look how it should
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
@use 'tailwindcss' as *;
|
||||
@use '@fontsource/roboto' as *;
|
||||
|
||||
$backgroundColor: #131313;
|
||||
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
background-color: $backgroundColor;
|
||||
color: white;
|
||||
user-select: none;
|
||||
@apply bg-[#131313] text-white select-none;
|
||||
}
|
||||
|
||||
img {
|
||||
pointer-events: none;
|
||||
@apply pointer-events-none;
|
||||
}
|
||||
|
||||
.button {
|
||||
@apply bg-[#0a6ec8] rounded-lg cursor-pointer text-[16px] p-1.5;
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
@use 'tailwindcss' as *;
|
||||
@@ -1,9 +1,12 @@
|
||||
import './Installs.scss'
|
||||
|
||||
export default function Installs () {
|
||||
function downloadVersion() {
|
||||
|
||||
}
|
||||
|
||||
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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
@use 'tailwindcss' as *;
|
||||
@@ -1,5 +1,3 @@
|
||||
import './Settings.scss'
|
||||
|
||||
export default function Settings () {
|
||||
return (
|
||||
<>
|
||||
|
||||
Reference in New Issue
Block a user