fix colors

This commit is contained in:
AntoninoP 2024-08-12 19:24:49 +02:00
parent 923191e189
commit 5f61f9e630
2 changed files with 4 additions and 18 deletions

View File

@ -79,19 +79,6 @@ const CreateServer = ({ user, onCreateServer, onSubdomainUpdate, onCancel, noSer
return input.replace(/[^a-zA-Z]/g, '');
};
const getFrameworkSource = () => {
switch (selectedFramework) {
case 'bukkit':
return bukkit;
case 'spigot':
return spigot;
case 'paper':
return paper;
default:
return vanilla;
}
};
return (
<div className={styles.container}>
{noServers ? (

View File

@ -1,6 +1,5 @@
$primary-color: #1D1836;
$text-color: black;
$background-color: white;
$border-radius: 1rem;
$padding: 1rem;
$font-family: 'Poppins', sans-serif;
@ -10,14 +9,14 @@ html, body {
padding: 0;
font-family: $font-family;
height: 100%;
background-color: $background-color !important;
background-color: white;
}
.container {
display: flex;
justify-content: center;
align-items: center;
background-color: $background-color;
background-color: white;
height: 93vh;
}
@ -25,7 +24,7 @@ html, body {
.mainCard {
width: 60rem;
padding: 3rem 0;
background-color: $background-color;
background-color: white;
display: flex;
justify-content: center;
align-items: center;
@ -66,6 +65,6 @@ html, body {
.nav {
color: $text-color;
background-color: $background-color;
background-color: white;
font-size: 2rem;
}