WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2024 Poal.co

1.1K

ps: oops - i think this should have gone in /poaldev - srry

just an FYI - i'm viewing from a desktop, not mobile

the placeholder color and background color are too similar - i might suggest...

input[type="search"] {
    background-color: white;
    color: #3e3e3e;
}

the 'hot' 'new' 'pop' 'top' links are overlapped and unusable for me, likely because i set a minimum font size in browser settings - this fixes it...

.pure-button-group .pure-button {
    margin: 0 1em;
}
.pure-button-primary, a.pure-button-primary {
    width: max-content !important;
}

notice the background color when previewing a block of code such as the above - this will fix that, but i don't know what else it might break...

code, pre {
    background: inherit;
}

in the editor, i personally think the buttons are too small...

.editbtns {
    margin: 0 0 16px;
}
.editbtns div {
    height: 32px;
    width: 32px;
    margin: 0 3px;
    border: 2px solid #818181;
}
.editbtns div svg {
    height: unset;
}
ps: oops - i think this should have gone in /poaldev - srry just an FYI - i'm viewing from a desktop, not mobile the placeholder color and background color are too similar - i might suggest... ``` input[type="search"] { background-color: white; color: #3e3e3e; } ``` the 'hot' 'new' 'pop' 'top' links are overlapped and unusable for me, likely because i set a minimum font size in browser settings - this fixes it... ``` .pure-button-group .pure-button { margin: 0 1em; } .pure-button-primary, a.pure-button-primary { width: max-content !important; } ``` notice the background color when previewing a block of code such as the above - this will fix that, but i don't know what else it might break... ``` code, pre { background: inherit; } ``` in the editor, i personally think the buttons are too small... ``` .editbtns { margin: 0 0 16px; } .editbtns div { height: 32px; width: 32px; margin: 0 3px; border: 2px solid #818181; } .editbtns div svg { height: unset; } ```

(post is archived)

[–] 0 pt

Damn nice of you to share that.