vleerapp / Vleer

Your library to everything
https://vleer.app
GNU General Public License v3.0
32 stars 5 forks source link

Fix the search css bug on page reload #6

Closed abcdefghijorngarbosaxyz closed 1 year ago

abcdefghijorngarbosaxyz commented 1 year ago

Regarding issue #2 When page reloads, it only loads the css imported at page: search.vue and doesnt load the actual css of the component: search.vue

Fix: Copy the styles on search.vue component into the search.css imported at search.vue page

.search {
  position: fixed;
  top: 40px;
  width: 325px;
  height: 40px;
  background-color: #1e1d23;
  border: 1px solid #26252b;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  padding-inline: 10px;
  color: var(--tx);
  outline: none;
  margin-bottom: 28px;
  z-index: 3;
}
0PandaDEV commented 1 year ago

thanks so much (: