Skip to content

Commit

Permalink
fix: remove duplicated styles in wrong context
Browse files Browse the repository at this point in the history
  • Loading branch information
anfibiacreativa committed Dec 6, 2023
1 parent f211a14 commit 784b0dd
Showing 1 changed file with 0 additions and 39 deletions.
39 changes: 0 additions & 39 deletions packages/chat-component/src/styles/chat-component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,24 +77,6 @@ export const chatStyle = css`
cursor: pointer;
text-decoration: underline;
}
@keyframes chatmessageanimation {
0% {
opacity: 0.5;
top: calc(--var(--d-xlarge) * 3);
}
100% {
opacity: 1;
top: 0;
}
}
@keyframes spinneranimation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.overlay {
position: fixed;
top: 0;
Expand Down Expand Up @@ -129,27 +111,6 @@ export const chatStyle = css`
.container-row {
flex-direction: row;
}
.headline {
color: var(--c-text);
font-size: var(--font-r-large);
padding: 0;
margin: var(--d-small) 0 var(--d-large);
@media (min-width: 1024px) {
font-size: var(--font-r-base);
text-align: center;
}
}
.subheadline {
color: var(--c-text);
font-size: var(--font-r-base);
padding: 0;
margin: 0;
}
.subheadline--small {
font-size: var(--font-small);
display: inline-block;
}
.chat__header--thread {
display: flex;
align-items: center;
Expand Down

0 comments on commit 784b0dd

Please sign in to comment.