38 lines
798 B
SCSS
38 lines
798 B
SCSS
.secMainFooterWrapper {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: end;
|
|
border-top: solid 1px rgba(255, 255, 255, 0.05);
|
|
|
|
.secMainFooter {
|
|
width: 100%;
|
|
padding: 15px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: rgba(255, 255, 255, 0.1);
|
|
|
|
.secMainFooterPara {
|
|
text-align: center;
|
|
width: 100%;
|
|
|
|
.secMainFooterParaLink {
|
|
transition: ease 0.4s;
|
|
color: rgba(255, 255, 255, 0.1);
|
|
text-decoration: unset;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
transition: ease 0.4s;
|
|
color: rgba(173, 90, 255, 0.75);
|
|
text-decoration: unset;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|