fix overflow-x glitch

This commit is contained in:
Martti Malmi 2023-06-13 10:34:36 +03:00
parent 05660f923a
commit e0253a1ad2
2 changed files with 1 additions and 3 deletions

View File

@ -129,7 +129,7 @@ class Main extends Component<Props, ReactState> {
<meta name="twitter:image" content="https://iris.to/assets/img/irisconnects.png" />
</Helmet>
<div className="overlay" onClick={() => this.onClickOverlay()}></div>
<div className="pb-16 md:pb-0 relative flex h-full w-full flex-col md:w-full">
<div className="pb-16 md:pb-0 relative flex h-full w-full flex-col md:w-full overflow-x-hidden">
<Router onChange={(e) => this.handleRoute(e)}>
<FeedList path="/" />
<KeyConverter path="/key" />

View File

@ -14,13 +14,11 @@ import { Link, route } from 'preact-router';
import logo from '../../../public/img/icon128.png';
import BaseComponent from '../BaseComponent';
import Icons from '../Icons';
import localState from '../LocalState';
import Key from '../nostr/Key';
import { translate as t } from '../translations/Translation.mjs';
import Modal from './modal/Modal';
import QRModal from './modal/QRModal';
import Identicon from './Identicon';
import PublicMessageForm from './PublicMessageForm';
import Name from "./Name";