56 lines
978 B
SCSS
56 lines
978 B
SCSS
.button-submit {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.button-telegram {
|
|
@extend .button-submit;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
// text-transform: none;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
|
|
animation: colorTransition 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
|
}
|
|
|
|
.button-telegram {
|
|
img {
|
|
margin: 0;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
|
|
@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;
|
|
}
|
|
|
|
.spinner-icon {
|
|
filter: brightness(0) invert(1);
|
|
fill: var(--color-primary);
|
|
margin: 0 !important;
|
|
margin-right: 6px !important;
|
|
}
|
|
|
|
.loading-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|