Fix some CSS issues
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
9b5894866c
commit
4e6c37bb75
|
@ -1,19 +1,20 @@
|
|||
@import "variables.scss";
|
||||
|
||||
a {
|
||||
color: $violet-2;
|
||||
}
|
||||
// a {
|
||||
// color: $violet-2;
|
||||
// }
|
||||
|
||||
a.out,
|
||||
.content a {
|
||||
.content a,
|
||||
.ProseMirror a {
|
||||
text-decoration: underline;
|
||||
text-decoration-color: #ed8d07;
|
||||
text-decoration-thickness: 2px;
|
||||
}
|
||||
|
||||
input.input {
|
||||
// border-color: $input-border-color !important;
|
||||
}
|
||||
// input.input {
|
||||
// border-color: $input-border-color !important;
|
||||
// }
|
||||
|
||||
.section {
|
||||
padding: 1rem 1% 4rem;
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
<div v-if="searchEvents.total > 0">
|
||||
<div class="columns is-multiline">
|
||||
<div
|
||||
class="column is-one-quarter-desktop"
|
||||
class="column is-one-third-desktop"
|
||||
v-for="event in searchEvents.elements"
|
||||
:key="event.uuid"
|
||||
>
|
||||
|
@ -108,7 +108,7 @@
|
|||
<div v-if="searchGroups.total > 0">
|
||||
<div class="columns is-multiline">
|
||||
<div
|
||||
class="column is-one-quarter-desktop"
|
||||
class="column is-one-third-desktop"
|
||||
v-for="group in searchGroups.elements"
|
||||
:key="group.uuid"
|
||||
>
|
||||
|
|
|
@ -139,6 +139,7 @@
|
|||
|
||||
<script lang="ts">
|
||||
import { Component, Prop, Vue } from "vue-property-decorator";
|
||||
import { Route } from "vue-router";
|
||||
import { CREATE_USER } from "../../graphql/user";
|
||||
import RouteName from "../../router/name";
|
||||
import { IConfig } from "../../types/config.model";
|
||||
|
@ -171,7 +172,7 @@ export default class Register extends Vue {
|
|||
locale: "en",
|
||||
};
|
||||
|
||||
errors: object = {};
|
||||
errors: Record<string, unknown> = {};
|
||||
|
||||
sendingForm = false;
|
||||
|
||||
|
@ -179,7 +180,7 @@ export default class Register extends Vue {
|
|||
|
||||
config!: IConfig;
|
||||
|
||||
async submit() {
|
||||
async submit(): Promise<Route | void> {
|
||||
this.sendingForm = true;
|
||||
this.credentials.locale = this.$i18n.locale;
|
||||
try {
|
||||
|
@ -208,6 +209,7 @@ export default class Register extends Vue {
|
|||
|
||||
<style lang="scss" scoped>
|
||||
@import "../../variables";
|
||||
@import "../../common.scss";
|
||||
|
||||
.avatar-enter-active {
|
||||
transition: opacity 1s ease;
|
||||
|
|
Loading…
Reference in a new issue