-
Notifications
You must be signed in to change notification settings - Fork 0
Fix horizontal scrolling on mobile #63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -5,6 +5,10 @@ | |||||||||||
| @tailwind components; | ||||||||||||
| @tailwind utilities; | ||||||||||||
|
|
||||||||||||
| html { | ||||||||||||
| overflow-x: hidden; | ||||||||||||
| } | ||||||||||||
|
|
||||||||||||
| ._button_normal { | ||||||||||||
| @apply text-gray-800 bg-bellow-500 p-2 rounded-lg no-underline; | ||||||||||||
| &:hover { | ||||||||||||
|
|
@@ -73,7 +77,7 @@ body.more-active { | |||||||||||
| @apply relative z-0; | ||||||||||||
| } | ||||||||||||
| & > header > nav { | ||||||||||||
| @apply bg-white w-screen absolute top-0 left-0 right-0 p-2 flex flex-col items-stretch bg-opacity-90 z-50 duration-1000; | ||||||||||||
| @apply bg-white absolute top-0 left-0 right-0 p-2 flex flex-col items-stretch bg-opacity-90 z-50 duration-1000; | ||||||||||||
| transition-property: top; | ||||||||||||
| @apply shadow-lg; | ||||||||||||
| & > ol.more { | ||||||||||||
|
|
@@ -1276,7 +1280,7 @@ body.articles, body.tutorials { | |||||||||||
| img { | ||||||||||||
| @apply w-full mt-4 h-40 object-cover sm:h-48 md:h-64 lg:h-80 xl:h-96; | ||||||||||||
| &.full-size { | ||||||||||||
| @apply w-auto h-auto; | ||||||||||||
| @apply w-auto h-auto max-w-full; | ||||||||||||
| @apply xl:max-w-2xl xl:mx-auto; | ||||||||||||
| } | ||||||||||||
| &.contained{ | ||||||||||||
|
|
@@ -1312,7 +1316,8 @@ body.articles, body.tutorials { | |||||||||||
| @apply my-4; | ||||||||||||
| } | ||||||||||||
| pre code { | ||||||||||||
| @apply whitespace-pre-wrap text-xs font-extralight p-4 bg-gray-900 text-white block my-4 lg:text-base lg:p-8; | ||||||||||||
| @apply whitespace-pre-wrap text-xs font-extralight p-4 bg-gray-900 text-white block my-4 lg:text-base lg:p-8; | ||||||||||||
| overflow-x: auto; | ||||||||||||
|
Comment on lines
+1319
to
+1320
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix stylelint failure on declaration spacing. Line 1320 needs an empty line before Suggested fix pre code {
`@apply` whitespace-pre-wrap text-xs font-extralight p-4 bg-gray-900 text-white block my-4 lg:text-base lg:p-8;
+
overflow-x: auto;📝 Committable suggestion
Suggested change
🧰 Tools🪛 Stylelint (17.9.0)[error] 1320-1320: Expected empty line before declaration (declaration-empty-line-before) (declaration-empty-line-before) 🤖 Prompt for AI Agents |
||||||||||||
|
|
||||||||||||
| .keyword { | ||||||||||||
| @apply font-bold; | ||||||||||||
|
|
||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Polish intro copy for clarity and correctness.
There are a few user-facing text issues in this edited block (
eleviated, “There’s 2”, and “most any”) that read as errors in published content.Suggested copy edit
🧰 Tools
🪛 LanguageTool
[grammar] ~15-~15: Ensure spelling is correct
Context: ...oding your UI in UIKit and then SwiftUI eleviated the Storyboard issue but Xcode projects...
(QB_NEW_EN_ORTHOGRAPHY_ERROR_IDS_1)
[style] ~19-~19: Avoid the colloquial phrase ‘most any’ in formal writing. Use “almost any” instead.
Context: ...s://tuist.dev) is what I’d recommend in most any other case. Tuist uses Swift for its ma...
(MOST_EVERYONE)
[style] ~19-~19: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ...he language for complex configurations. Tuist has a very robust community and support...
(ENGLISH_WORD_REPEAT_BEGINNING_RULE)
🤖 Prompt for AI Agents