remove style from element

This commit is contained in:
ogerly 2021-09-24 11:07:15 +02:00
parent eca56af32a
commit 62f6b67c2b
6 changed files with 18 additions and 21 deletions

View File

@ -1,5 +1,5 @@
<template> <template>
<b-card class="bg-transparent"> <b-card class="bg-transparent border-0">
<div class="w-100 text-center"> <div class="w-100 text-center">
<vue-qrcode <vue-qrcode
v-if="$store.state.email" v-if="$store.state.email"

View File

@ -1,9 +1,5 @@
<template> <template>
<b-card <b-card id="userdata_form" class="card-border-radius card-background-gray">
id="userdata_form"
class="bg-transparent"
style="background-color: #ebebeba3 !important; border-radius: 0px 5px 5px 0px; border: 0px"
>
<div> <div>
<b-row class="mb-4 text-right"> <b-row class="mb-4 text-right">
<b-col class="text-right"> <b-col class="text-right">

View File

@ -1,9 +1,5 @@
<template> <template>
<b-card <b-card id="change_pwd" class="card-border-radius card-background-gray">
id="change_pwd"
class="bg-transparent"
style="background-color: #ebebeba3 !important; border-radius: 0px 5px 5px 0px; border: 0px"
>
<div> <div>
<b-row class="mb-4 text-right"> <b-row class="mb-4 text-right">
<b-col class="text-right"> <b-col class="text-right">

View File

@ -1,9 +1,5 @@
<template> <template>
<b-card <b-card id="formuserlanguage" class="card-border-radius card-background-gray">
id="formuserlanguage"
class="bg-transparent"
style="background-color: #ebebeba3 !important; border-radius: 0px 5px 5px 0px; border: 0px"
>
<div> <div>
<b-row class="mb-4 text-right"> <b-row class="mb-4 text-right">
<b-col class="text-right"> <b-col class="text-right">

View File

@ -1,8 +1,5 @@
<template> <template>
<b-card <b-card id="formusernewsletter" class="card-border-radius card-background-gray">
id="formusernewsletter"
style="background-color: #ebebeba3 !important; border-radius: 0px 5px 5px 0px; border: 0px"
>
<div> <div>
<b-row class="mb-3"> <b-row class="mb-3">
<b-col class="mb-2 col-12"> <b-col class="mb-2 col-12">

View File

@ -31,4 +31,16 @@ export default {
}, },
} }
</script> </script>
<style></style> <style>
.card-border-radius {
border-radius: 0px 5px 5px 0px !important;
}
@media screen and (max-width: 1235px) {
.card-border-radius {
border-radius: 0px !important;
}
}
.card-background-gray {
background-color: #ebebeba3 !important;
}
</style>