UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 03113409 authored by ckwolff's avatar ckwolff
Browse files

fixing the opacity issue with the h1 header

parent f82aaf81
No related branches found
No related tags found
1 merge request!77BULL-1603 - fixing the opacity issue with the h1 header
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
v-if="logoSource || svgComponent" v-if="logoSource || svgComponent"
class="col-md-4 py-0 order-md-2 mt-md-n10" class="col-md-4 py-0 order-md-2 mt-md-n10"
> >
<!--TODO: Update width of img src similar to svg component--> <!--TODO: Update width of img src similar to svg component-->
<v-img <v-img
:src="logoSource" :src="logoSource"
:class=" :class="
...@@ -53,11 +53,12 @@ ...@@ -53,11 +53,12 @@
{{ line }} {{ line }}
</h1> </h1>
</div> </div>
<div v-if="description" <div
:class=" v-if="description"
$vuetify.breakpoint.smAndDown :class="
? 'mt-9 mr-5' $vuetify.breakpoint.smAndDown ? 'mt-9 mr-5' : 'mt-6 mb-4 mr-10'
: 'mt-6 mb-4 mr-10'"> "
>
<h4 class="subhead mr-md-15 sm-h4 sm-pageheader-margin"> <h4 class="subhead mr-md-15 sm-h4 sm-pageheader-margin">
{{ description }} {{ description }}
</h4> </h4>
...@@ -103,18 +104,17 @@ export default { ...@@ -103,18 +104,17 @@ export default {
logoSvg: Object, logoSvg: Object,
logoMaxWidth: String, logoMaxWidth: String,
hideBreadcrumbs: Boolean, hideBreadcrumbs: Boolean,
subtextComponent: Object, subtextComponent: Object
}, },
components: { Breadcrumb }, components: { Breadcrumb },
data() { data() {
return { return {
svgComponent: this.logoSvg, svgComponent: this.logoSvg
}; };
}, }
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@include sm-down { @include sm-down {
.sm-logo { .sm-logo {
width: 45%; width: 45%;
...@@ -126,7 +126,6 @@ export default { ...@@ -126,7 +126,6 @@ export default {
.h1 { .h1 {
font-size: 180%; font-size: 180%;
opacity: 93%;
} }
.sm-h4 { .sm-h4 {
...@@ -138,13 +137,6 @@ export default { ...@@ -138,13 +137,6 @@ export default {
@include md { @include md {
.h1 { .h1 {
font-size: 4rem; font-size: 4rem;
opacity: 93%;
}
}
@include lg-up {
.h1 {
opacity: 93%;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment