Skip to content

Commit

Permalink
update css
Browse files Browse the repository at this point in the history
dunno scss
  • Loading branch information
pernucia committed Nov 20, 2024
1 parent 0465605 commit 878e964
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
13 changes: 5 additions & 8 deletions packages/frontend/src/widgets/WidgetKordle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,9 @@ defineExpose<WidgetComponentExpose>({
</script>

<style lang="scss" module>
.root {
border: none;
pointer-events: none;
color-scheme: light;
}
.kordle {
height: 100%;
}
.mkw-kordle {
.kordle {
height: 100%;
};
};
</style>
20 changes: 11 additions & 9 deletions packages/frontend/src/widgets/WidgetSpinner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,18 @@ defineExpose<WidgetComponentExpose>({
</script>

<style lang="scss" module>
.spinner-box {
display: flex;
justify-content: center;
align-items: center;
transition: transform 0.8s ease-in-out;
.mkw-spinner {
> .spinner-box {
display: flex;
justify-content: center;
align-items: center;
transition: transform 0.8s ease-in-out;

> .spinner {
position: absolute;
width: 90%;
height: 90%;
> .spinner {
position: absolute;
width: 90%;
height: 90%;
};
};
};
</style>

0 comments on commit 878e964

Please sign in to comment.