Skip to content
Snippets Groups Projects
Commit 83edb9a1 authored by Miriam Lang's avatar Miriam Lang
Browse files

color definition

parent 1c53a476
No related branches found
No related tags found
No related merge requests found
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;1,300&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;1,300&display=swap');
$base-green: rgb(34, 139, 34); $base-green: rgb(14, 134, 78);
$base-blue: rgb(0, 212, 255); $base-blue: rgb(0, 212, 255);
$base-green-2: rgb(7, 170, 94);
$theme-colors: ( $theme-colors: (
"primary": $base-green, 'primary': $base-green-2
); );
.main-container { .main-container {
...@@ -54,3 +55,10 @@ $theme-colors: ( ...@@ -54,3 +55,10 @@ $theme-colors: (
-ms-user-select: none; /* Internet Explorer/Edge */ -ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently*/ user-select: none; /* Non-prefixed version, currently*/
} }
.btn-primary {
background-color: $base-green-2 !important;
border: $base-green-2 !important;
}
...@@ -2,6 +2,7 @@ import React, { useState } from 'react'; ...@@ -2,6 +2,7 @@ import React, { useState } from 'react';
import {Col, Button, Form,} from 'react-bootstrap'; import {Col, Button, Form,} from 'react-bootstrap';
import ApothekeRegisterModal from '../../modals/ApothekeRegisterModal'; import ApothekeRegisterModal from '../../modals/ApothekeRegisterModal';
import { useSnackbar } from 'notistack'; import { useSnackbar } from 'notistack';
import '../../App.scss';
import './Startseite.scss' import './Startseite.scss'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment