25 lines
384 B
SCSS
25 lines
384 B
SCSS
|
.page-main {
|
||
|
@include responsive-container;
|
||
|
background-color: #333;
|
||
|
margin-top: 1rem;
|
||
|
padding: 1rem;
|
||
|
|
||
|
.contact-links {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: 1rem;
|
||
|
|
||
|
a {
|
||
|
border: 2px solid;
|
||
|
color: #fff;
|
||
|
padding: 1rem;
|
||
|
text-decoration: none;
|
||
|
|
||
|
&:hover {
|
||
|
background-color: #fff;
|
||
|
color: #000;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|