mirror of
https://github.com/hubHarmony/servii-frontend.git
synced 2024-11-17 21:40:30 +00:00
fix colors
This commit is contained in:
parent
923191e189
commit
5f61f9e630
@ -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 ? (
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user