mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-18 15:23:38 +01:00
CSS fixes for mobile.
This commit is contained in:
parent
3d1dc08491
commit
bba75fd67f
@ -12,6 +12,8 @@
|
|||||||
|
|
||||||
.loading {
|
.loading {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
border: 1px solid var(--gray500);
|
border: 1px solid var(--gray500);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
z-index: 2;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
.option {
|
.option {
|
||||||
|
@ -46,7 +46,7 @@ export default function MenuButton({
|
|||||||
</Button>
|
</Button>
|
||||||
{showMenu && (
|
{showMenu && (
|
||||||
<Menu
|
<Menu
|
||||||
className={classNames(styles.menu, menuClassname)}
|
className={menuClassname}
|
||||||
options={options}
|
options={options}
|
||||||
selectedOption={selectedOption}
|
selectedOption={selectedOption}
|
||||||
onSelect={handleSelect}
|
onSelect={handleSelect}
|
||||||
|
@ -9,10 +9,6 @@
|
|||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu {
|
|
||||||
z-index: 100;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text {
|
.text {
|
||||||
font-size: var(--font-size-small);
|
font-size: var(--font-size-small);
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import classNames from 'classnames';
|
||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
import Link from 'components/common/Link';
|
import Link from 'components/common/Link';
|
||||||
import styles from './Footer.module.css';
|
import styles from './Footer.module.css';
|
||||||
@ -8,9 +9,9 @@ export default function Footer() {
|
|||||||
const { current } = useVersion();
|
const { current } = useVersion();
|
||||||
return (
|
return (
|
||||||
<footer className="container">
|
<footer className="container">
|
||||||
<div className={styles.footer}>
|
<div className={classNames(styles.footer, 'row')}>
|
||||||
<div />
|
<div className="col-12 col-md-4" />
|
||||||
<div>
|
<div className="col-12 col-md-4">
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id="message.powered-by"
|
id="message.powered-by"
|
||||||
defaultMessage="Powered by {name}"
|
defaultMessage="Powered by {name}"
|
||||||
@ -23,7 +24,7 @@ export default function Footer() {
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div>{`v${current}`}</div>
|
<div className={classNames(styles.version, 'col-12 col-md-4')}>{`v${current}`}</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
);
|
);
|
||||||
|
@ -4,4 +4,15 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
font-size: var(--font-size-small);
|
font-size: var(--font-size-small);
|
||||||
min-height: 100px;
|
min-height: 100px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.version {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
.version {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
.bar {
|
.bar {
|
||||||
display: flex;
|
display: flex;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
min-height: 80px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bar > div + div {
|
.bar > div + div {
|
||||||
|
@ -8,5 +8,18 @@
|
|||||||
|
|
||||||
.menu div {
|
.menu div {
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
min-width: 33%;
|
min-width: calc(100% / 3);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 992px) {
|
||||||
|
.menu {
|
||||||
|
min-width: 90vw;
|
||||||
|
transform: translateX(calc(40vw));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 768px) {
|
||||||
|
.menu div {
|
||||||
|
min-width: 50%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user