Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
INJECT
frontend
Commits
fb550033
There was an error fetching the commit references. Please try again later.
Commit
fb550033
authored
10 months ago
by
Marek Veselý
Browse files
Options
Downloads
Patches
Plain Diff
refactor: remove unused css variables, use blueprint colors
parent
616c0c5d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/src/components/ErrorMessage/index.tsx
+5
-4
5 additions, 4 deletions
frontend/src/components/ErrorMessage/index.tsx
frontend/src/global.css
+0
-16
0 additions, 16 deletions
frontend/src/global.css
with
5 additions
and
20 deletions
frontend/src/components/ErrorMessage/index.tsx
+
5
−
4
View file @
fb550033
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
})
=>
(
...
...
This diff is collapsed.
Click to expand it.
frontend/src/global.css
+
0
−
16
View file @
fb550033
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment