mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-25 23:37:46 +03:00
30 lines
723 B
CSS
30 lines
723 B
CSS
|
.social-auth-grid {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||
|
grid-gap: 0.5rem;
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
.auth-method-box {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
border: 1px solid var(--ifm-color-emphasis-300);
|
||
|
border-radius: var(--ifm-pagination-nav-border-radius);
|
||
|
padding: 1.5rem;
|
||
|
transition: all 0.1s ease-in-out;
|
||
|
}
|
||
|
.auth-method-box:hover {
|
||
|
border-color: var(--ifm-pagination-nav-color-hover);
|
||
|
}
|
||
|
.auth-method-box h3 {
|
||
|
margin: 0;
|
||
|
color: var(--ifm-link-color);
|
||
|
}
|
||
|
.auth-method-box p {
|
||
|
margin: 0;
|
||
|
color: var(--ifm-color-secondary-contrast-foreground);
|
||
|
}
|
||
|
.social-auth-info {
|
||
|
color: var(--ifm-color-secondary-contrast-foreground);
|
||
|
}
|