We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b22816b commit d98db61Copy full SHA for d98db61
1 file changed
tests/note_assets_test.cpp
@@ -146,7 +146,7 @@ int main()
146
147
assert(css.has_value());
148
assert(css->contentType == "text/css; charset=utf-8");
149
- assert(css->content.find(".note-shell") != std::string::npos);
+ assert(css->content.find(".vn-AppBar") != std::string::npos);
150
151
std::optional<vix::note::NoteAsset> js =
152
assets.find("/assets/note.js");
@@ -280,8 +280,8 @@ int main()
280
vix::note::NoteAssets::default_css();
281
282
assert(css.find(":root") != std::string::npos);
283
- assert(css.find(".note-cell") != std::string::npos);
284
- assert(css.find("--note-accent") != std::string::npos);
+ assert(css.find(".vn-Notebook") != std::string::npos);
+ assert(css.find("--vn-brand1") != std::string::npos);
285
}
286
287
{
0 commit comments