1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-10 18:10:54 +09:00

JS-6729: design review

This commit is contained in:
Mike Mhlv 2025-04-03 13:25:39 +01:00
parent 4c67a1ecc6
commit 1c857badff
2 changed files with 8 additions and 2 deletions

View file

@ -105,7 +105,9 @@
.steps {
.step0 {
.types {
.type { color: rgba(32, 41, 92, 0.5); }
.type {
.label { color: rgba(32, 41, 92, 0.5); }
}
}
}

View file

@ -230,7 +230,11 @@ class UtilData {
if (!Storage.get('primitivesOnboarding')) {
window.setTimeout(() => {
S.Popup.open('onboarding', {});
S.Popup.open('onboarding', {
onClose: () => {
Storage.set('primitivesOnboarding', true);
}
});
}, 1000);
};