Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
Adjust nonMobile column structure
Browse files Browse the repository at this point in the history
Mak left image wrapper smaller and also make the right close column only 1 col and allow for main form column to expand.  This will make the whole pushdown shorter.
  • Loading branch information
B77Mills committed Jun 30, 2023
1 parent e286bae commit dfc6c3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="row">
<div :class="element('image-wrapper', ['d-none', 'd-md-flex', 'col-md-5', 'col-lg-4'])">
<div :class="element('image-wrapper', ['d-none', 'd-md-flex', 'col-md-3'])">
<img
v-if="imageSrc"
:src="imageSrc"
Expand All @@ -9,7 +9,7 @@
:class="element('image')"
>
</div>
<div :class="element('form-wrapper', ['col-12', 'col-md-6', 'col-lg-5'])">
<div :class="element('form-wrapper', ['col-12', 'col-md-8'])">
<div :class="element('name')">
{{ name }}
</div>
Expand Down Expand Up @@ -53,7 +53,7 @@
{{ error.message }}
</div>
</div>
<div :class="element('close-container', ['d-none', 'd-md-flex', 'col-md-1', 'col-lg-3'])">
<div :class="element('close-container', ['d-none', 'd-md-flex', 'col-md-1'])">
<close-button
:class-name="element('close').join(' ')"
target-button=".site-navbar__newsletter-toggler"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
}

&__image {
width: 280px;
width: 170px;
margin-top: auto;
margin-right: auto;
margin-left: auto;
Expand Down

0 comments on commit dfc6c3c

Please sign in to comment.