Responsiveness issues? #405
Unanswered
Feuerhamster
asked this question in
Help
Replies: 3 comments
-
Where is It's CSS file? There is a problem with CSS, but HTML seems to be right! |
Beta Was this translation helpful? Give feedback.
0 replies
-
please provide css file, or add following code in your css file that you are importing in this html page and check. .container{ |
Beta Was this translation helpful? Give feedback.
0 replies
-
Here is my CSS in the project. @font-face {
font-family: "Atkinson";
src: url("/fonts/atkinson-hyperlegible-latin-400-normal.woff2");
}
@font-face {
font-family: "Atkinson";
src: url("/fonts/atkinson-hyperlegible-latin-700-normal.woff2");
font-weight: bold;
}
body {
font-family: "Atkinson", sans-serif;
--font-family: "Atkinson", sans-serif;
--primary: #ed6840;
--primary-hover: #f87857;
--primary-focus: #f57a5c40!important;
--primary-inverse: #FFF;
--form-element-active-border-color: var(--primary);
--form-element-focus-color: var(--primary-focus);
--switch-color: var(--primary-inverse);
--switch-checked-background-color: var(--primary);
}
img {
border-radius: var(--border-radius);
}
.group {
display: flex;
align-items: center;
gap: var(--spacing);
} Other than that there is no other custom css added. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have some issues with responsiveness. On some screen sizes, like my laptop or an IPad, there is a vertical scrollbar visible.
My Code:
I do not customize any spacing, only colors.
Is this a bug in picocss or am I doing something wrong?
Beta Was this translation helpful? Give feedback.
All reactions