reduce space below search on mobile

This commit is contained in:
Max Ward 2023-02-19 17:59:22 -08:00
parent 44f59e9708
commit bfbb4c6b11
3 changed files with 4 additions and 4 deletions

View File

@ -10,8 +10,8 @@ interface SectionHeadingProps {
export function SectionHeading(props: SectionHeadingProps) {
return (
<div className={`mt-12 ${props.className}`}>
<div className="mb-4 flex items-end">
<div className={`${props.className}`}>
<div className="mb-3 flex items-center">
<p className="flex flex-1 items-center font-bold uppercase text-denim-700">
{props.icon ? (
<span className="mr-2 text-xl">

View File

@ -171,7 +171,7 @@ function NewDomainModal() {
export function HomeView() {
return (
<div className="mb-16 mt-32">
<div className="mb-16">
<NewDomainModal />
<Bookmarks />
<Watched />

View File

@ -22,7 +22,7 @@ export function SearchView() {
return (
<>
<div className="relative z-10 mb-24">
<div className="relative z-10 mb-16 sm:mb-24">
<Helmet>
<title>{t("global.name")}</title>
</Helmet>