From fbc84a1659d415f928d7cf26c68a9e0372cd15a7 Mon Sep 17 00:00:00 2001 From: hippoz <10706925-hippoz@users.noreply.gitlab.com> Date: Mon, 25 Apr 2022 22:55:23 +0300 Subject: [PATCH] frontend: add comments for each global.css section --- frontend/public/global.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/frontend/public/global.css b/frontend/public/global.css index 17ac1dc..9647e94 100644 --- a/frontend/public/global.css +++ b/frontend/public/global.css @@ -84,7 +84,7 @@ body { background-color: var(--background-color-1); } -/* shared styles for all components */ +/* top bar */ .top-bar { display: flex; @@ -102,6 +102,8 @@ body { margin-left: var(--space-xxs); } +/* modal */ + .modal-backdrop { position: absolute; width: 100vw; @@ -143,6 +145,8 @@ body { float: left; } +/* input */ + .input-label { text-transform: uppercase; color: var(--foreground-color-2); @@ -158,6 +162,8 @@ body { line-height: inherit; } +/* button */ + .button { background-color: var(--background-color-2); text-align: center; @@ -185,6 +191,8 @@ body { background-color: var(--purple-2); } +/* text */ + .h1 { font-size: 2.488rem; }