windows-ui
windows-ui copied to clipboard
Several issues
I noticed several issues that should be adressed to be a proper framework.
-
(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.
-
Classes are way to dependant on parent classes. For example it is impossible to use the
app-navbar-list-itemon 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>
- 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 {
...
}