Skip to content

Commit 474c725

Browse files
committed
feat: adds BCFTopics tutorial
1 parent e8321c9 commit 474c725

File tree

4 files changed

+241
-221
lines changed

4 files changed

+241
-221
lines changed

packages/core/src/openbim/BCFTopics/example.html

+29-11
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,39 @@
2222
border-radius: 0;
2323
}
2424

25-
dialog:not([data-context-dialog]) {
26-
background-color: transparent;
27-
border: none;
28-
margin: auto;
29-
outline: none;
30-
overflow: visible;
25+
bim-grid[floating]>bim-panel {
26+
border-radius: 1rem;
3127
}
3228

33-
dialog:not([data-context-dialog])::backdrop {
34-
background-color: rgba(0, 0, 0, 0.5);
35-
backdrop-filter: blur(3px);
29+
.options-menu {
30+
position: fixed;
31+
min-width: unset;
32+
top: 5px;
33+
right: 5px;
34+
max-height: calc(100vh - 10px);
3635
}
3736

38-
bim-grid[floating]>bim-panel {
39-
border-radius: 1rem;
37+
.phone-menu-toggler {
38+
visibility: hidden;
39+
}
40+
41+
@media (max-width: 480px) {
42+
.options-menu {
43+
visibility: hidden;
44+
bottom: 5px;
45+
left: 5px;
46+
}
47+
48+
.options-menu-visible {
49+
visibility: visible;
50+
}
51+
52+
.phone-menu-toggler {
53+
visibility: visible;
54+
position: fixed;
55+
top: 5px;
56+
right: 5px;
57+
}
4058
}
4159
</style>
4260
</head>

0 commit comments

Comments
 (0)