Fixes broken styles
This commit is contained in:
parent
52eb4c3183
commit
bc14f6d542
4 changed files with 18 additions and 27 deletions
|
@ -112,16 +112,12 @@ export default {
|
||||||
background: var(--s-50);
|
background: var(--s-50);
|
||||||
color: var(--s-800);
|
color: var(--s-800);
|
||||||
border: 1px solid var(--s-75);
|
border: 1px solid var(--s-75);
|
||||||
height: var(--space-medium);
|
height: var(--space-two);
|
||||||
|
line-height: 1.2;
|
||||||
text-shadow: 0.1px 0 rgb(0 0 0 / 5%), 0 0.1px rgb(0 0 0 / 5%),
|
|
||||||
-0.1px 0 rgb(0 0 0 / 5%), 0 -0.1px rgb(0 0 0 / 5%);
|
|
||||||
|
|
||||||
&.small {
|
&.small {
|
||||||
font-size: var(--font-size-micro);
|
font-size: var(--font-size-micro);
|
||||||
padding: var(--space-micro) var(--space-smaller);
|
padding: var(--space-micro) var(--space-smaller);
|
||||||
line-height: 1.2;
|
|
||||||
letter-spacing: 0.15px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.label--icon {
|
.label--icon {
|
||||||
|
|
|
@ -29,7 +29,6 @@ export default {
|
||||||
.label.secondary.inbox--name {
|
.label.secondary.inbox--name {
|
||||||
background: none;
|
background: none;
|
||||||
color: var(--s-600);
|
color: var(--s-600);
|
||||||
padding: 0;
|
|
||||||
|
|
||||||
.label__title {
|
.label__title {
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
|
|
|
@ -110,7 +110,8 @@
|
||||||
:key="label.id"
|
:key="label.id"
|
||||||
:title="label.title"
|
:title="label.title"
|
||||||
:description="label.description"
|
:description="label.description"
|
||||||
:bg-color="label.color"
|
:color="label.color"
|
||||||
|
variant="smooth"
|
||||||
small
|
small
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -369,16 +370,6 @@ export default {
|
||||||
background: var(--color-background-light);
|
background: var(--color-background-light);
|
||||||
}
|
}
|
||||||
|
|
||||||
.has-inbox-name {
|
|
||||||
&::v-deep .user-thumbnail-box {
|
|
||||||
margin-top: var(--space-normal);
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
.conversation--meta {
|
|
||||||
margin-top: var(--space-normal);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.message {
|
.message {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
|
@ -436,8 +427,7 @@ export default {
|
||||||
.content {
|
.content {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-top: var(--space-smaller);
|
padding: var(--space-micro) 0 var(--space-micro);
|
||||||
padding-bottom: var(--space-micro);
|
|
||||||
|
|
||||||
.badge {
|
.badge {
|
||||||
color: var(--white);
|
color: var(--white);
|
||||||
|
@ -449,6 +439,7 @@ export default {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-right: var(--space-smaller);
|
margin-right: var(--space-smaller);
|
||||||
|
margin-bottom: var(--space-smaller);
|
||||||
}
|
}
|
||||||
|
|
||||||
.assignee-arrow {
|
.assignee-arrow {
|
||||||
|
@ -474,7 +465,6 @@ export default {
|
||||||
.label {
|
.label {
|
||||||
background: none;
|
background: none;
|
||||||
color: var(--s-600);
|
color: var(--s-600);
|
||||||
padding: var(--space-micro) 0;
|
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
max-width: 12rem;
|
max-width: 12rem;
|
||||||
|
@ -484,10 +474,11 @@ export default {
|
||||||
.footer {
|
.footer {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
flex-flow: row wrap;
|
||||||
margin-top: var(--space-smaller);
|
margin-top: var(--space-smaller);
|
||||||
|
|
||||||
.label {
|
.label {
|
||||||
margin-bottom: 0;
|
margin-bottom: var(--space-smaller);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -506,16 +497,20 @@ export default {
|
||||||
font-weight: var(--font-weight-medium);
|
font-weight: var(--font-weight-medium);
|
||||||
}
|
}
|
||||||
.checkbox-wrapper {
|
.checkbox-wrapper {
|
||||||
height: 40px;
|
|
||||||
width: 40px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
border-radius: 100%;
|
flex: 1 0 auto;
|
||||||
margin-top: var(--space-normal);
|
|
||||||
|
height: var(--space-large);
|
||||||
|
width: var(--space-large);
|
||||||
|
border-radius: var(--space-medium);
|
||||||
|
|
||||||
|
margin: var(--space-small) var(--space-smaller) 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: var(--w-100);
|
background-color: var(--w-75);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type='checkbox'] {
|
input[type='checkbox'] {
|
||||||
|
|
|
@ -24,5 +24,6 @@ export default {
|
||||||
.label--add {
|
.label--add {
|
||||||
margin-bottom: var(--space-micro);
|
margin-bottom: var(--space-micro);
|
||||||
margin-right: var(--space-micro);
|
margin-right: var(--space-micro);
|
||||||
|
height: var(--space-two);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue