Propo41 / bookify

Tailored for organizations, a simple tool that can enhance productivity by minimizing the time spent finding and securing meeting rooms in google calendar
https://bookify-dev-u8p8s.ondigitalocean.app/
MIT License
6 stars 1 forks source link

Make Mobile-Responsive Page Desktop-Responsive #45

Open jenyyy4 opened 20 hours ago

jenyyy4 commented 20 hours ago

Bug Report: Make Mobile-Responsive Page Desktop-Responsive

Summary

The current page design is optimized for mobile devices but does not adapt well to larger screens or desktop browsers. The request is to enhance the page layout and design to be fully responsive on desktop, ensuring a seamless experience across all screen sizes.

Motivation

While the page performs well on mobile, it lacks responsiveness on desktop, leading to:

A desktop-responsive design will:

Use Cases

Users accessing the page from a desktop browser will experience an optimized layout that utilizes the full screen, with appropriately sized elements and minimal whitespace.

Desktop Responsive Request Screenshot

Proposed Solution

Layout Adjustments:

Specific Changes:

Example of CSS Media Queries:


/* Mobile-first approach */
body {
    font-size: 16px;
    padding: 10px;
}

/* Desktop */
@media screen and (min-width: 1024px) {
    body {
        font-size: 20px;
        padding: 30px;
    }
}
jenyyy4 commented 20 hours ago

@Propo41 I would like to work on this issue, please assign it to me.

Propo41 commented 9 hours ago

@jenyyy4 If you are looking forward to making the fonts and sizes responsive, then please go ahead. Also note that someone else is working on the white background issue for some desktop resolutions, which is being worked on by someone else https://github.com/Propo41/bookify/pull/44