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
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);