Add padding (mostly for mobile)
This commit is contained in:
parent
9627c60021
commit
5acb5484df
3 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@ type Props = {
|
|||
export function Head({ locale, theme, setTheme, children }: Props) {
|
||||
return (
|
||||
<header className="flex flex-col h-12 mt-4 mb-4">
|
||||
<h1 className="flex justify-center p-0 m-0">
|
||||
<h1 className="flex justify-center p-0 m-0 mb-4">
|
||||
<a className="no-underline" href={`/${locale.name}/`}>
|
||||
{children}
|
||||
</a>
|
||||
|
|
|
@ -39,7 +39,7 @@ export function SurahIndex({ appVersion, locale, surahs, t }: Props) {
|
|||
<Head locale={locale} theme={theme} setTheme={setTheme}>
|
||||
{t(locale, "TheNobleQuran")}
|
||||
</Head>
|
||||
<ul className="body index scroll-y list-none p-0 m-0 h-5/6">
|
||||
<ul className="body index scroll-y list-none p-0 m-0 mt-4 h-5/6">
|
||||
{index.map((surah, key) => (
|
||||
<li className="surah" key={key}>
|
||||
<a
|
||||
|
|
|
@ -23,7 +23,7 @@ export function Stream({ locale, surah, stream, endOfStream, isPaused, t }: Prop
|
|||
<ul
|
||||
lang={locale.name}
|
||||
className={classNames(
|
||||
"body stream scroll-y list-none p-0 m-0 mt-1 h-5/6",
|
||||
"body stream scroll-y list-none p-0 m-0 mt-4 h-5/6",
|
||||
...className,
|
||||
)}
|
||||
ref={ref}
|
||||
|
|
Loading…
Reference in a new issue