Skip to content
Snippets Groups Projects
Commit 175754c4 authored by Lars Maronde's avatar Lars Maronde
Browse files

fixed color issues

parent 83edb9a1
No related branches found
No related tags found
No related merge requests found
server.port=8080 server.port=8080
endpoint=db:3306 endpoint=192.168.99.100:3306
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://${endpoint}/edb-apo-db spring.datasource.url=jdbc:mysql://${endpoint}/edb-apo-db
spring.datasource.username=edbapo spring.datasource.username=edbapo
......
This diff is collapsed.
...@@ -6,9 +6,13 @@ ...@@ -6,9 +6,13 @@
cursor: pointer; cursor: pointer;
} }
li.active {
background-color: $base-green;
border: none;
}
li:not(.active):hover{ li:not(.active):hover{
background-color: $base-blue; background-color: $base-green-2;
} }
} }
......
import React from 'react'; import React from 'react';
import ReactDOM from 'react-dom'; import ReactDOM from 'react-dom';
import './index.css'; import './index.scss';
import App from './App'; import App from './App';
import 'bootstrap/dist/css/bootstrap.min.css'; import 'bootstrap/dist/css/bootstrap.min.css';
......
@import 'App.scss';
body { body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
...@@ -14,6 +16,14 @@ code { ...@@ -14,6 +16,14 @@ code {
footer { footer {
background-color: #f5f5f5; background-color: #f5f5f5;
padding-left: 3em; padding-left: 3em;
a {
color: $base-green;
}
a:hover {
color: $base-green-2;
}
} }
.footer > span { .footer > span {
......
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