16 lines
No EOL
279 B
CSS
16 lines
No EOL
279 B
CSS
#footer
|
|
{
|
|
display: grid;
|
|
grid-gap: 0px;
|
|
height: 30rem;
|
|
grid-template-columns: repeat(3, 33.3%);
|
|
background-color: var(--color-dark);
|
|
color: var(--color-white);
|
|
overflow: clip;
|
|
}
|
|
|
|
.footer-container
|
|
{
|
|
padding: 1rem 2rem;
|
|
word-wrap: break-word;
|
|
} |