Skip to content
Snippets Groups Projects
Commit fb550033 authored by Marek Veselý's avatar Marek Veselý
Browse files

refactor: remove unused css variables, use blueprint colors

parent 616c0c5d
No related branches found
No related tags found
No related merge requests found
import { Colors } from '@blueprintjs/core'
import { css } from '@emotion/css' import { css } from '@emotion/css'
import type { FC, PropsWithChildren } from 'react' import type { FC, PropsWithChildren } from 'react'
const div = css` const div = css`
background: #c20b0b; background: ${Colors.RED1};
color: var(--white-1); color: ${Colors.WHITE};
border-radius: var(--md); border-radius: 0.5rem;
padding: var(--md) var(--lg); padding: 0.5rem 1rem;
` `
const ErrorMessage: FC<PropsWithChildren> = ({ children }) => ( const ErrorMessage: FC<PropsWithChildren> = ({ children }) => (
......
...@@ -5,27 +5,12 @@ html, body, #root { ...@@ -5,27 +5,12 @@ html, body, #root {
html { html {
overflow-x: hidden; overflow-x: hidden;
/* overflow-y: hidden; */
} }
body.bp5-dark { body.bp5-dark {
background-color: #2f343c; background-color: #2f343c;
} }
body {
--green-1: #12ae12;
--white-1: #fffefe;
--grey-1: #aeaeae;
--grey-2: #9e9e93;
--blue-1: #43d4ee;
--sm: 0.25rem;
--md: 0.5rem;
--lg: 1rem;
--xl: 2rem;
--xxl: 4rem;
}
* { * {
box-sizing: border-box; box-sizing: border-box;
} }
...@@ -64,7 +49,6 @@ h6 { ...@@ -64,7 +49,6 @@ h6 {
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
border-radius: 8px; border-radius: 8px;
background-color: transparent; background-color: transparent;
/* border: 1px solid rgba(255, 255, 255, 0.2); */
border-left: 2px none; border-left: 2px none;
border-right: 2px none; border-right: 2px none;
border-top: 2px none; border-top: 2px none;
......
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