Files
jambonz-webapp/src/components/forms/checkzone/styles.scss
Hoan Luu Huu 08d1293e34 feat: add login with google and github (#278)
* feat: add login with google and github
* feat: hosted version
* add register pages
* feat: add verify email code page
* register by email
* fix login
* fix logout
* add all stripe pages
* subscription delete account
* fix edit account and edit sip realm
* when user account login, remove cancel in edit page
* remove name
* update .env configuraiton vars
2023-07-30 22:33:58 -04:00

65 lines
984 B
SCSS

@use "src/styles/vars";
@use "@jambonz/ui-kit/src/styles/vars" as ui-vars;
@use "@jambonz/ui-kit/src/styles/mixins" as ui-mixins;
.checkzone {
padding: ui-vars.$px02;
border-radius: ui-vars.$px01;
border: 2px solid vars.$jeangrey;
width: 100%;
max-width: vars.$widthinput;
.label-container {
display: flex;
justify-content: center;
}
> label {
input {
margin-top: ui-vars.$px01;
margin-right: ui-vars.$px02;
}
}
&__managed {
margin-top: ui-vars.$px02;
cursor: not-allowed;
opacity: 0.25;
> * {
pointer-events: none;
}
> * + * {
margin-top: ui-vars.$px02;
}
> label + * {
margin-top: ui-vars.$px01;
}
> a {
width: 100%;
}
&.active {
cursor: auto;
opacity: 1;
> * {
pointer-events: auto;
}
}
}
&--hidden {
.checkzone__managed {
display: none;
&.active {
display: block;
}
}
}
}