Skip to content

Commit cb7d0a3

Browse files
committed
Fix some stylistic bits and pieces
1 parent 7f2d3ee commit cb7d0a3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

app/assets/stylesheets/custom/utilities/_typography.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@use "../../brand" as brand;
22

33
.is-force-wrapped {
4-
overflow-wrap: break-word;
4+
word-break: break-word;
55
}
66
.can-wrap {
77
white-space: normal;

app/views/home/user_home.html.haml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
%p= t('.page_description2')
77
%section.section
88
.container
9-
.fixed-grid.has-2-cols
9+
.fixed-grid.has-1-cols.has-2-cols-tablet
1010
.grid
11-
.cell.is-col-span-2= render 'url_card'
11+
.cell.is-col-span-2-tablet= render 'url_card'
1212
.cell.is-fullheight
1313
.fixed-grid.has-1-cols.is-fullheight
1414
.grid.is-fullheight

app/views/layouts/_navbar.html.haml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
= link_to root_path, class: 'navbar-item' do
55
= image_tag 'logo.svg', alt: t('icon_alt')
66
%b= t('product_name')
7-
%a.navbar-burger{role: 'button', aria: {label: 'menu', expanded: 'false'}, data: {navbar_target: 'burger', action: 'navbar#toggleMenu'}}
8-
- 3.times do
7+
%a.navbar-burger.has-text-white{role: 'button', aria: {label: 'menu', expanded: 'false'}, data: {navbar_target: 'burger', action: 'navbar#toggleMenu'}}
8+
- 4.times do
99
%span{aria_hidden: true}
1010
.navbar-menu{data: {navbar_target: 'menu'}}
1111
.navbar-start

0 commit comments

Comments
 (0)