forked from Berry-Dash/launcher
Add download button & make install text look how it should
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
@@ -1 +0,0 @@
|
|||||||
@use 'tailwindcss' as *;
|
|
||||||
@@ -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>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
@use 'tailwindcss' as *;
|
|
||||||
@@ -1,5 +1,3 @@
|
|||||||
import './Settings.scss'
|
|
||||||
|
|
||||||
export default function Settings () {
|
export default function Settings () {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
|||||||
Reference in New Issue
Block a user