feat: defer everything until the api config is loaded #926

Merged
konrad merged 27 commits from feature/ready-state into main 2021-11-13 19:49:03 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 9ff8e11171 - Show all commits

View File

@ -122,9 +122,9 @@ export default {
.api-url-info {
font-size: .9rem;
text-align: right;
}
konrad marked this conversation as resolved Outdated
  • unnest
  • try to not use a tag selector: does using just .url work? if not -> How about .api-url
- unnest - try to not use a tag selector: does using just `.url` work? if not -> How about `.api-url`

The .url isn't used anywhere else. Unnesting and omitting the tag seems to work.

The `.url` isn't used anywhere else. Unnesting and omitting the tag seems to work.
span.url {
border-bottom: 1px dashed $primary;
}
.url {
border-bottom: 1px dashed $primary;
}
</style>