Adjust footer

This commit is contained in:
Riley S 2021-07-05 03:14:07 -04:00
parent 9962a11f03
commit ac16727f7a
2 changed files with 11 additions and 6 deletions

View File

@ -2,6 +2,11 @@
<style> <style>
footer footer
{ {
@apply bg-gray-300 p-2 border-t border-black;
grid-area: footer; grid-area: footer;
} }
:global(.dark) footer
{
@apply bg-gray-900 border-white;
}
</style> </style>

View File

@ -10,15 +10,15 @@
<style> <style>
ul ul
{ {
@apply bg-gray-300 w-full flex items-center p-2; @apply flex items-center p-2;
}
:global(.dark) ul
{
@apply bg-gray-900
} }
header header
{ {
@apply p-0; @apply bg-gray-300 p-0 border-b border-black;
grid-area: header; grid-area: header;
} }
:global(.dark) header
{
@apply bg-gray-900 border-white;
}
</style> </style>