windows-ui icon indicating copy to clipboard operation
windows-ui copied to clipboard

Several issues

Open Slluxx opened this issue 1 year ago • 7 comments

I noticed several issues that should be adressed to be a proper framework.

  1. (And what bothers me most is that) The readme of this repository gets edited without any reason. I can only guess that it serves the purpose of being in the top search results. This is highly deceiving and it messes up the Insights/Network view.

  2. Classes are way to dependant on parent classes. For example it is impossible to use the app-navbar-list-item on its own if i desire to (to have my own custom sidebar / sidebar buttons).

<li class="app-navbar-list-item">
    <a href="./index.html" class="active">
        <span>Home</span>
    </a>
</li>
  1. Styles should not depend on tags. In fact, tags shouldnt be used anywhere for styling. It should all be doable with plain divs and styles only applied to classes.
<nav class="app-navbar">
    <ul class="app-navbar-list">
       <li class="app-navbar-list-item">
.app-navbar-wrap nav {
    ...
}

Slluxx avatar Mar 08 '24 22:03 Slluxx