Skip to content

Commit

Permalink
fix(ui): long <li> lines
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Feb 6, 2024
1 parent bcb95be commit f2749f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion content/til/2024_02_05-subslice_pattern_rust.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@ fn foo(words: &[&str]) {
**refs:**
- https://blog.rust-lang.org/2020/03/12/Rust-1.42.html#subslice-patterns
- https://doc.rust-lang.org/stable/reference/patterns.html#slice-patterns
- https://www.codewars.com/kata/reviews/610bafaf8ddaed0001adc1bf/groups/610bb3c2c37fc900018b08f1
- [https://www.codewars.com/kata/reviews/610bafaf8ddaed0001adc1bf...](https://www.codewars.com/kata/reviews/610bafaf8ddaed0001adc1bf/groups/610bb3c2c37fc900018b08f1)

4 changes: 3 additions & 1 deletion src/styles/components.css
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,15 @@
}

ul {
@apply list-inside list-disc text-justify md:text-left;
@apply list-inside list-disc overflow-x-auto text-justify md:text-left;

&.contains-task-list {
@apply list-none;
}

li {
@apply w-max;

ul {
@apply px-6;
}
Expand Down

0 comments on commit f2749f1

Please sign in to comment.