diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-06-05 21:06:09 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-06-05 21:06:09 -0500 |
| commit | f8915cfa1f70d837fe89f0af61fb36ed9bcf52f8 (patch) | |
| tree | 59c18d20f15a9acd1c1484e99203c37e3c6db013 /src/App.svelte | |
| parent | fe45c328fbd83a0659b16598ad91d7d5d2361b02 (diff) | |
WiP
Diffstat (limited to 'src/App.svelte')
| -rw-r--r-- | src/App.svelte | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/App.svelte b/src/App.svelte index b775e86..5b453a1 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -18,5 +18,28 @@ /* Custom Styles */ @layer utilities { + .assign-box { + /* w-1/3 bg-green-500 flex flex-col border-solid hover:border-4 border-2 border-slate-400 */ + flex: none; + flex-direction: column; + width: 33.33%; + display: flex; + border-width: 4px; + border: solid; + border-color: rgb(148 163 184); + } + .assign-box:hover { + /* border-width: 6px; */ + border-color: black; + } + + .assign-box-header { + font-size: 1.5rem; + font-family: sans; + border-bottom: solid; + text-align: center; + height: 10%; + overflow: hidden; + } } </style> |
