diff --git a/anwendung/src/components/Button.jsx b/anwendung/src/components/Button.jsx index 9a05edb..34bb7a9 100644 --- a/anwendung/src/components/Button.jsx +++ b/anwendung/src/components/Button.jsx @@ -1,5 +1,3 @@ -import "../styles/App.css" - /** * Function Takes in Paramter for: * text: text to be shown on the button diff --git a/anwendung/src/styles/App.css b/anwendung/src/styles/App.css deleted file mode 100644 index 3f3e750..0000000 --- a/anwendung/src/styles/App.css +++ /dev/null @@ -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; -} diff --git a/anwendung/src/styles/globals.css b/anwendung/src/styles/globals.css index fd81e88..c6198ae 100644 --- a/anwendung/src/styles/globals.css +++ b/anwendung/src/styles/globals.css @@ -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; +}