Skip to content

Commit

Permalink
chore: revert text-wrap changes globally
Browse files Browse the repository at this point in the history
  • Loading branch information
onmax committed Aug 22, 2024
1 parent 0a5663c commit cc2b092
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 8 deletions.
10 changes: 10 additions & 0 deletions src/components/modals/AssetTransferModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,16 @@ export default defineComponent({

<style scoped lang="scss">
.asset-transfer-modal {
h1, h2, h3, h4, h5, h6 {
text-wrap: pretty;
width: max-content;
}
p, li {
text-wrap: balance;
width: max-content;
}
.loading-wrapper {
display: grid;
place-content: center;
Expand Down
10 changes: 10 additions & 0 deletions src/components/modals/SinpeMovilInfoModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,16 @@ export default defineComponent({
</script>

<style lang="scss" scoped>
h1, h2, h3, h4, h5, h6 {
text-wrap: pretty;
width: max-content;
}
p, li {
text-wrap: balance;
width: max-content;
}
.page-body {
padding: 0;
}
Expand Down
10 changes: 10 additions & 0 deletions src/components/modals/SinpeMovilMobileVerificationModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,16 @@ export default defineComponent({

<style lang="scss" scoped>
.sinpe-movil-modal {
h1, h2, h3, h4, h5, h6 {
text-wrap: pretty;
width: max-content;
}
p, li {
text-wrap: balance;
width: max-content;
}
.page-header-back-button {
font-size: 3rem;
position: absolute;
Expand Down
8 changes: 0 additions & 8 deletions src/scss/themes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,3 @@ button.reset:disabled {
line-height: unset;
}
}

h1, h2, h3, h4, h5, h6 {
text-wrap: pretty;
}

p, li {
text-wrap: balance;
}

0 comments on commit cc2b092

Please sign in to comment.