Skip to content

Commit

Permalink
fix: Remove references to Calendarium
Browse files Browse the repository at this point in the history
  • Loading branch information
valentine195 committed Apr 20, 2024
1 parent 7253a51 commit aea36c6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/lib/details/Details.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
</script>

<details
class="creator calendarium-nested-settings setting-item"
class="nested-settings setting-item"
class:always-open={alwaysOpen}
bind:open
use:details
>
<summary
class="calendarium-nested-summary"
class="nested-summary"
on:keyup={(evt) => evt.preventDefault()}
>
<div class="setting-item setting-item-heading">
Expand All @@ -43,7 +43,7 @@
</div>
</summary>

<div class="creator-settings-container">
<div class="settings-container">
<slot />
</div>
</details>
Expand All @@ -52,21 +52,21 @@
.always-open {
pointer-events: none;
}
.creator-settings-container {
.settings-container {
pointer-events: initial;
}
.calendarium-nested-settings {
.nested-settings {
position: relative;
}
.calendarium-nested-summary {
.nested-summary {
outline: none;
list-style: none !important;
list-style-type: none !important;
min-height: 1rem;
border-top-left-radius: 0.1rem;
border-top-right-radius: 0.1rem;
cursor: pointer;
background-color: var(--creator-background-color);
background-color: var(--background-color);
margin-right: 0;
display: flex;
justify-content: space-between;
Expand Down Expand Up @@ -101,11 +101,11 @@
transform: rotate(90deg);
}
.creator-settings-container {
.settings-container {
padding: 0.75em var(--size-4-3);
}
.calendarium-nested-settings {
.nested-settings {
border-top: 0px;
}
</style>

0 comments on commit aea36c6

Please sign in to comment.