mirror of
https://github.com/jambonz/jambonz-webapp.git
synced 2026-02-09 02:29:45 +00:00
* 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
65 lines
984 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|