Skip to content

Commit

Permalink
fixed text wrap issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nimeshaperi committed Oct 15, 2024
1 parent 537b698 commit de74301
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 12 deletions.
Binary file added public/assets/icons/collab-banner-clear.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions public/first-principles.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@






<nav id="header-section">
Expand Down Expand Up @@ -159,6 +160,7 @@ <h2>Content</h2>







Expand Down
2 changes: 2 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
</head>
<body id="introduction">


<nav id="header-section">
<h2>Content</h2>
<div>
Expand Down Expand Up @@ -113,6 +114,7 @@ <h2>Content</h2>
</div>
</nav>



<main id="main-section">
<img
Expand Down
2 changes: 2 additions & 0 deletions public/sources.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@






<nav id="header-section">
Expand Down Expand Up @@ -166,6 +167,7 @@ <h2>Content</h2>







Expand Down
8 changes: 2 additions & 6 deletions public/styles/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,8 @@ h6 {
}

p {
overflow-wrap: break-word;
overflow-wrap: normal;
word-break: normal;
font-family: Lato, sans-serif;
font-size: 1rem;
line-height: 1.5rem;
Expand Down Expand Up @@ -731,7 +732,6 @@ ol {
}

li {
word-break: break-all;
font-size: 1rem;
line-height: 1.5rem;
--tw-text-opacity: 1;
Expand Down Expand Up @@ -845,10 +845,6 @@ iframe {
text-transform: capitalize;
}

#header-section ul li {
overflow-wrap: break-word;
}

.crop-category {
margin-bottom: 0.5rem;
}
Expand Down
8 changes: 2 additions & 6 deletions src/input.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
}

p {
@apply text-base text-secondary-900 font-body break-words;
@apply text-base text-secondary-900 font-body break-normal;
}

a {
Expand Down Expand Up @@ -70,7 +70,7 @@
@apply list-decimal pl-4;
}
li {
@apply text-secondary-900 text-base break-all;
@apply text-secondary-900 text-base;
}

iframe {
Expand Down Expand Up @@ -107,10 +107,6 @@
@apply bg-secondary-100 rounded-lg px-4 list-none capitalize;
}

#header-section ul li {
@apply break-words;
}

.crop-category {
@apply mb-2;
}
Expand Down

0 comments on commit de74301

Please sign in to comment.