change style for mobil and middle

This commit is contained in:
ogerly 2022-04-07 10:19:31 +02:00
parent e0a5d01074
commit 10bcb93ba3
3 changed files with 32 additions and 24 deletions

View File

@ -52,13 +52,6 @@ export default {
position: sticky;
}
.header-img {
position: fixed;
top: -359px;
right: 13%;
width: 385px;
}
.g-logo-radius {
-webkit-border-top-right-radius: 77px;
-webkit-border-bottom-right-radius: 137px;
@ -69,5 +62,26 @@ export default {
border-top-right-radius: 77px;
border-bottom-right-radius: 137px;
border-bottom-left-radius: 0px;
z-index: 1;
}
.header-img {
position: absolute;
top: -11px;
right: 7%;
max-width: 64%;
}
@media screen and (max-width: 450px) {
.header-img {
position: absolute;
top: -15px;
right: 0%;
max-width: 61%;
}
}
.navbar-toggler {
z-index: 1;
}
</style>

View File

@ -1,13 +1,6 @@
<template>
<div class="login-form">
<div class="pb-5">Melde dich mit deinen Zugangsdaten an. Bewahre sie stet's sicher auf!</div>
<!-- <div class="text-center mb-4 test-communitydata">
<b>{{ $store.state.community.name }}</b>
<p class="text-lead">
{{ $store.state.community.description }}
</p>
{{ $t('login') }}
</div> -->
<label>Wähle deine Community</label>
<b-form-select
v-model="selected"

View File

@ -104,16 +104,7 @@
</b-row>
<b-row>
<b-col cols="3">
<b-button
:disabled="disabled"
type="submit"
:variant="disabled ? 'outline-light' : 'gradido'"
>
{{ $t('signup') }}
</b-button>
</b-col>
<b-col cols="9">
<b-col class="mb-4 mb-md-0">
<b-form-checkbox
id="registerCheckbox"
v-model="form.agree"
@ -123,6 +114,16 @@
<span class="text-muted" v-html="$t('site.signup.agree')"></span>
</b-form-checkbox>
</b-col>
<b-col>
<b-button
:disabled="disabled"
type="submit"
:variant="disabled ? 'outline-light' : 'gradido'"
>
{{ $t('signup') }}
</b-button>
</b-col>
</b-row>
</b-form>
</validation-observer>