mirror of
https://github.com/openziti/zrok.git
synced 2025-01-08 23:20:04 +01:00
responsive breakpoints; lint (#107)
This commit is contained in:
parent
13261011d9
commit
195210d868
@ -1,4 +1,6 @@
|
||||
|
||||
$blue: #3b2693;
|
||||
$font-family-sans-serif: "Russo One", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
$font-family-monospace: "JetBrains Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
$font-family-monospace: "JetBrains Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
$grid-breakpoints: ( xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1400px );
|
||||
$container-max-widths: ( sm: 540px, md: 720px, lg: 960px, xl: 1340px );
|
2
ui/public/bootstrap.min.css
vendored
2
ui/public/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
@ -13,8 +13,8 @@ const NewConsole = (props) => {
|
||||
const closeVersionModal = () => setShowVersionModal(false);
|
||||
|
||||
return (
|
||||
<Container fluid="xl">
|
||||
<Navbar bg="primary" variant="dark" id="navbar" expand="lg">
|
||||
<Container fluid={"xl"}>
|
||||
<Navbar bg="primary" variant="dark" id="navbar" expand="md">
|
||||
<Container fluid>
|
||||
<Navbar.Brand>
|
||||
<img alt="Ziggy" src="/ziggy.svg" width="65" className="d-inline-block align-top" />{' '}
|
||||
|
@ -21,7 +21,7 @@ const NewVersion = (props) => {
|
||||
<Modal show={props.show} onHide={props.onHide} centered>
|
||||
<Modal.Header closeButton>About zrok</Modal.Header>
|
||||
<Modal.Body>
|
||||
<h3>{v}</h3>
|
||||
<code>{v}</code>
|
||||
</Modal.Body>
|
||||
</Modal>
|
||||
);
|
||||
|
@ -5,8 +5,8 @@ body {
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: 'Russo One', sans-serif;
|
||||
code, pre {
|
||||
font-family: 'JetBrains Mono', Consolas, 'Courier New', monospace;
|
||||
}
|
||||
|
||||
#navbar {
|
||||
|
Loading…
Reference in New Issue
Block a user