Skip to content

Commit

Permalink
feat: adds BCFTopics tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
HoyosJuan committed Nov 15, 2024
1 parent e8321c9 commit 474c725
Show file tree
Hide file tree
Showing 4 changed files with 241 additions and 221 deletions.
40 changes: 29 additions & 11 deletions packages/core/src/openbim/BCFTopics/example.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,39 @@
border-radius: 0;
}

dialog:not([data-context-dialog]) {
background-color: transparent;
border: none;
margin: auto;
outline: none;
overflow: visible;
bim-grid[floating]>bim-panel {
border-radius: 1rem;
}

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

bim-grid[floating]>bim-panel {
border-radius: 1rem;
.phone-menu-toggler {
visibility: hidden;
}

@media (max-width: 480px) {
.options-menu {
visibility: hidden;
bottom: 5px;
left: 5px;
}

.options-menu-visible {
visibility: visible;
}

.phone-menu-toggler {
visibility: visible;
position: fixed;
top: 5px;
right: 5px;
}
}
</style>
</head>
Expand Down
Loading

0 comments on commit 474c725

Please sign in to comment.