mirror of
https://github.com/hex248/sprint.git
synced 2026-02-07 18:23:03 +00:00
small-screen-overlay
This commit is contained in:
@@ -224,3 +224,27 @@
|
|||||||
align-items: center !important;
|
align-items: center !important;
|
||||||
white-space: nowrap !important;
|
white-space: nowrap !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.small-screen-overlay {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 559px) {
|
||||||
|
.small-screen-overlay {
|
||||||
|
position: fixed;
|
||||||
|
inset: 0;
|
||||||
|
z-index: 50;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 24px;
|
||||||
|
padding-top: calc(env(safe-area-inset-top, 0px) + 24px);
|
||||||
|
padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 24px);
|
||||||
|
width: 100vw;
|
||||||
|
height: 100dvh;
|
||||||
|
background-color: var(--background);
|
||||||
|
color: var(--foreground);
|
||||||
|
text-align: center;
|
||||||
|
text-wrap: pretty;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -64,5 +64,8 @@ ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
|||||||
</SessionProvider>
|
</SessionProvider>
|
||||||
</QueryProvider>
|
</QueryProvider>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
<output className="small-screen-overlay" aria-live="polite">
|
||||||
|
sprint will look very ugly and disjointed if you try to use it at a resolution this small!
|
||||||
|
</output>
|
||||||
</React.StrictMode>,
|
</React.StrictMode>,
|
||||||
);
|
);
|
||||||
|
|||||||
3
todo.md
3
todo.md
@@ -1,7 +1,8 @@
|
|||||||
# HIGH PRIORITY
|
# HIGH PRIORITY
|
||||||
|
|
||||||
|
- BUGS:
|
||||||
|
- issue descriptions not showing
|
||||||
- FEATURES:
|
- FEATURES:
|
||||||
- filters
|
|
||||||
- pricing page
|
- pricing page
|
||||||
- see jira and other competitors
|
- see jira and other competitors
|
||||||
- explore payment providers (stripe is the only one i know)
|
- explore payment providers (stripe is the only one i know)
|
||||||
|
|||||||
Reference in New Issue
Block a user