mirror of
https://github.com/evgen-app/lending-next.git
synced 2024-11-22 06:46:33 +03:00
40 lines
624 B
CSS
40 lines
624 B
CSS
.footer{
|
|
padding: 10px;
|
|
background: #FFFFFF;
|
|
border: 1px solid #EEEEEE;
|
|
box-sizing: border-box;
|
|
border-radius: 15px 15px 0px 0px;
|
|
width: 100%;
|
|
right: 0;
|
|
position: absolute;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 25px;
|
|
}
|
|
|
|
.copyright{
|
|
position: relative;
|
|
margin-right: 40%;
|
|
}
|
|
|
|
.socMedia:hover{
|
|
transform: scale(1.1);
|
|
}
|
|
@media (max-width: 500px){
|
|
.socMedia{
|
|
width: 52px;
|
|
}
|
|
.copyright{
|
|
margin-right: 10%;
|
|
height: 24px;
|
|
width: 50px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|