jfrome1 / NTW2029

https://ntw-2029.vercel.app
0 stars 1 forks source link

To adjust styling on the feedback component. #13

Closed JojokCreator closed 1 week ago

JojokCreator commented 2 weeks ago

To fix the styles on the feedback message form. image

Go to the FeedbackAnalyticsComponent.astro component

Change the style below.

        .feelback-container {
        margin: 2rem auto 3rem;
        --max-width: 400px !important;
    }

The auto part is the left and right margins. If you give auto they take up all the space. Set it to 0 and it should make the component fill all the space. Or use a fixed margin 0.5rem

Probably remove the max width too.