fix(editor): Fix unwanted side effects from tailwind components (no-changelog) (#9359)

This commit is contained in:
Alex Grozav 2024-05-10 18:12:04 +03:00 committed by GitHub
parent c92c870c73
commit aa397b9730
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 11 deletions

View file

@ -519,7 +519,7 @@ function goToUpgrade() {
</script>
<template>
<div class="container">
<div :class="$style.container">
<BreakpointsObserver :value-x-s="15" :value-s-m="25" :value-m-d="50" class="name-container">
<template #default="{ value }">
<ShortenName
@ -665,14 +665,6 @@ function goToUpgrade() {
$--text-line-height: 24px;
$--header-spacing: 20px;
.container {
position: relative;
top: -1px;
width: 100%;
display: flex;
align-items: center;
}
.name-container {
margin-right: $--header-spacing;
}
@ -729,6 +721,14 @@ $--header-spacing: 20px;
</style>
<style module lang="scss">
.container {
position: relative;
top: -1px;
width: 100%;
display: flex;
align-items: center;
}
.group {
display: flex;
gap: var(--spacing-xs);

View file

@ -1,5 +1,5 @@
<template>
<div class="container">
<div :class="$style.container">
<el-col class="notags" :span="16">
<div class="icon">🗄</div>
<div>
@ -25,7 +25,7 @@ export default defineComponent({
});
</script>
<style lang="scss" scoped>
<style lang="scss" module>
$--footer-spacing: 45px;
.container {
@ -34,7 +34,9 @@ $--footer-spacing: 45px;
align-items: center;
margin-top: $--footer-spacing;
}
</style>
<style lang="scss" scoped>
.notags {
word-break: normal;
text-align: center;