Laravel-Backpack / theme-coreuiv4

UI for Backpack v6 that uses CoreUI v4 and Bootstrap v5.
MIT License
7 stars 4 forks source link

[Bug] Logo shows up too big #8

Closed tabacitu closed 1 year ago

tabacitu commented 1 year ago

Bug report

What I did

What I expected to happen

What happened

CleanShot 2023-05-08 at 10 58 32

maurohmartinez commented 1 year ago

Uff... yeah, there is a little bit of css that should be removed from resources/assets/css/style.css:436 in Tabler, and added somewhere on demo repo for this to work across themes.

/*Logo*/
.project-logo {
    max-width: 150px;
    height: auto;
}

.auth-logo-container .project-logo {
    max-width: 230px;
    height: auto;
}
tabacitu commented 1 year ago

Discussed in meeting - let's fix this using inline CSS in the config file.

tabacitu commented 1 year ago

Fixed in https://github.com/Laravel-Backpack/demo/pull/505