Moved CSS Code from App to Global

This commit is contained in:
brausjonas
2023-05-02 16:03:02 +02:00
parent dccefaa3ea
commit 104c30553b
3 changed files with 31 additions and 32 deletions
-2
View File
@@ -1,5 +1,3 @@
import "../styles/App.css"
/**
* Function Takes in Paramter for:
* text: text to be shown on the button
-30
View File
@@ -1,30 +0,0 @@
.round-border
{
border-radius: 10px;
border-width: 0;
}
.font-small
{
font-size: 15px;
}
.font-middle
{
font-size: 20px ;
}
.font-big
{
font-size: 30px;
}
.button
{
background-color: #0d52ce;
}
.button:hover
{
background-color: #585858;
}
+31
View File
@@ -25,3 +25,34 @@ body {
)
rgb(var(--background-start-rgb));
}
.round-border
{
border-radius: 10px;
border-width: 0;
}
.font-small
{
font-size: 15px;
}
.font-middle
{
font-size: 20px ;
}
.font-big
{
font-size: 30px;
}
.button
{
background-color: #0d52ce;
}
.button:hover
{
background-color: #585858;
}