webapp/src/components/Nav/AuthModal/SocialProviders.module.scss

53 lines
747 B
SCSS
Raw Normal View History

2022-10-21 18:17:04 +00:00
.container {
2023-05-18 20:02:19 +00:00
border-bottom: 1px solid #dfdfdf;
border-top: 1px solid #dfdfdf;
2022-10-21 18:17:04 +00:00
margin-top: 1em;
padding: 0.8em 0 1em;
}
.text {
@include font-size(1.5rem);
2023-05-20 13:14:42 +00:00
font-weight: 500;
2022-10-21 18:17:04 +00:00
margin-bottom: 1em;
text-align: center;
}
.social {
background-color: white;
display: flex;
margin: 0 -5px;
> * {
background-color: #f7f7f7;
cursor: pointer;
flex: 1;
margin: 0 5px;
2023-06-27 22:47:47 +00:00
padding: 0.5em !important;
2022-10-21 18:17:04 +00:00
text-align: center;
}
img {
height: 1em;
2023-05-13 20:48:56 +00:00
margin: 0 auto;
2022-10-21 18:17:04 +00:00
max-width: 1.8em;
vertical-align: middle;
width: auto;
}
a {
2023-03-10 17:42:48 +00:00
border: none !important;
2022-10-21 18:17:04 +00:00
}
2024-01-19 22:53:38 +00:00
.facebook,
.google,
.vk,
.telegram {
border: none;
}
.github:hover {
2022-10-21 18:17:04 +00:00
img {
filter: invert(1);
}
}
}