Skip to content

Commit

Permalink
Fix some stylistic bits and pieces
Browse files Browse the repository at this point in the history
  • Loading branch information
pedantic-git committed Aug 7, 2024
1 parent 7f2d3ee commit cb7d0a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/assets/stylesheets/custom/utilities/_typography.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@use "../../brand" as brand;

.is-force-wrapped {
overflow-wrap: break-word;
word-break: break-word;
}
.can-wrap {
white-space: normal;
Expand Down
4 changes: 2 additions & 2 deletions app/views/home/user_home.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
%p= t('.page_description2')
%section.section
.container
.fixed-grid.has-2-cols
.fixed-grid.has-1-cols.has-2-cols-tablet
.grid
.cell.is-col-span-2= render 'url_card'
.cell.is-col-span-2-tablet= render 'url_card'
.cell.is-fullheight
.fixed-grid.has-1-cols.is-fullheight
.grid.is-fullheight
Expand Down
4 changes: 2 additions & 2 deletions app/views/layouts/_navbar.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
= link_to root_path, class: 'navbar-item' do
= image_tag 'logo.svg', alt: t('icon_alt')
%b= t('product_name')
%a.navbar-burger{role: 'button', aria: {label: 'menu', expanded: 'false'}, data: {navbar_target: 'burger', action: 'navbar#toggleMenu'}}
- 3.times do
%a.navbar-burger.has-text-white{role: 'button', aria: {label: 'menu', expanded: 'false'}, data: {navbar_target: 'burger', action: 'navbar#toggleMenu'}}
- 4.times do
%span{aria_hidden: true}
.navbar-menu{data: {navbar_target: 'menu'}}
.navbar-start
Expand Down

0 comments on commit cb7d0a3

Please sign in to comment.