what's the best way to get branle without the html/css structure of quasar? I want a barebones base to start messing around and I really hate working within frameworks style and layout bloat. #[0] testing mentions :)
Discussion
something that's bothering me is the profile img gets distrorted. the css looks to be generated, so I don't really know where this gets setup, but It would be cool if someone could add:
```object-fit: cover;``` to the ```.q-avatar__content, .q-avatar img:not(.q-icon):not(.q-img__image)``` selector
I understand you, I also hate these bloated frameworks, but it was better than trying to write the full UI myself.
you can probably just clone branle, delete all quasar components and replace them with `
maybe it's better to create a new vue+vuex+vue-router project and copy-paste the database and store files from branle, then slowly build your new UI using only the data and actions you need.
yeah I understand why people use frameworks, it speeds up deployment without needind to focus on UI, but it would benefit the community if we have a bare-bones unopinionated base to work with. Will try to work towards this goal. I move slowly though..