Evo.Auth/apps/web/components/Form.module.scss
2024-05-07 14:19:15 +03:00

62 lines
1.1 KiB
SCSS

.form {
display: flex;
flex-direction: column;
justify-content: space-between;
* {
margin: 7px 0;
}
}
.button-submit {
background-color: var(--color-primary);
font-family: Montserrat;
border: 0;
color: #fff;
cursor: pointer;
font-size: 14px;
font-weight: bold;
line-height: 2;
outline: 0;
padding: 0.55rem 0.75rem;
text-align: center;
text-transform: uppercase;
vertical-align: middle;
width: 100%;
}
.button-telegram {
@extend .button-submit;
background-color: var(--color-primary);
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
text-transform: none;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
b {
line-height: 0;
}
animation: colorTransition 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes colorTransition {
0% {
background-color: var(--color-primary);
}
100% {
background-color: #54a9eb;
}
}
.button-telegram-icon {
filter: brightness(0) invert(1);
margin: 0 !important;
margin-right: 13px !important;
margin-left: none !important;
}