Skip to content

Commit 1f20f80

Browse files
committed
Remove flex-grow
1 parent 5a087ba commit 1f20f80

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/hexdocs/view/home.gleam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub fn home(model: Model) {
2525
class("px-5"),
2626
],
2727
[
28-
html.main([class("flex-grow")], [
28+
html.main([], [
2929
html.section([], [
3030
html.div([id("nav"), class("flex justify-between items-center")], [
3131
html.a(

src/hexdocs/view/search.gleam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ pub fn search(model: Model) {
101101
html.div(
102102
[
103103
class(
104-
"flex-grow bg-slate-100 dark:bg-slate-700 rounded-lg border border-slate-300 dark:border-slate-600 relative",
104+
"bg-slate-100 dark:bg-slate-700 rounded-lg border border-slate-300 dark:border-slate-600 relative",
105105
),
106106
],
107107
[
@@ -183,7 +183,7 @@ pub fn search(model: Model) {
183183
[
184184
attribute.type_("submit"),
185185
class(
186-
"flex-grow bg-blue-600 hover:bg-blue-700 text-slate-100 rounded-lg h-10 flex items-center justify-center transition duration-200",
186+
"bg-blue-600 hover:bg-blue-700 text-slate-100 rounded-lg h-10 flex items-center justify-center transition duration-200",
187187
),
188188
],
189189
[

0 commit comments

Comments
 (0)