Skip to content

Commit

Permalink
Allow overflow-x on solutions with unbreakable words (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
willemvb authored Nov 29, 2021
1 parent 317f611 commit a68e2ce
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `ignition` will be documented in this file

## 2.17.2 - 2021-11-29

- scroll overflow on solutions

## 2.17.1 - 2021-11-25

- streamline Livewire solutions
Expand Down
4 changes: 2 additions & 2 deletions resources/compiled/ignition.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions resources/css/utilities/solution.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@
@apply mb-4;
}

.solution-content-wrapper {
@apply p-12;
@apply overflow-x-auto;
}

.solution-content {
@apply max-w-4xl;
}
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/Solutions/SolutionCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</g>
</svg>
</div>
<div class="p-12">
<div class="solution-content-wrapper scrollbar">
<div class="solution-content ml-0">
<h2 v-if="solution.title !== ''" class="solution-title">
{{ solution.title }}
Expand Down

0 comments on commit a68e2ce

Please sign in to comment.