Skip to content

Commit

Permalink
chore: remove link css overrides (#31498)
Browse files Browse the repository at this point in the history
  • Loading branch information
juliajforesti authored Jan 24, 2024
1 parent 28f2147 commit 46c96d3
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 12 deletions.
6 changes: 1 addition & 5 deletions apps/meteor/app/theme/client/imports/general/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ body {
}

:focus {
outline: 0 !important;
outline: 0;
outline-style: none;
outline-color: transparent;
}
Expand All @@ -50,10 +50,6 @@ body {
}
}

a {
cursor: pointer;
}

button {
padding: 0;

Expand Down
2 changes: 0 additions & 2 deletions apps/meteor/app/theme/client/imports/general/base_old.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@
font-size: smaller;

& a {
text-decoration: underline;

font-weight: bold !important;
}
}
Expand Down
4 changes: 0 additions & 4 deletions apps/meteor/app/theme/client/imports/general/reset.css
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,3 @@ table {

border-collapse: collapse;
}

a {
color: var(--rcx-color-font-info, #095ad2);
}
2 changes: 1 addition & 1 deletion apps/meteor/client/views/room/Header/RoomHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const RoomHeader = ({ room, topic = '', slots = {} }: RoomHeaderProps) => {
{topic && (
<HeaderContentRow>
<HeaderSubtitle is='h2'>
<MarkdownText parseEmoji={true} variant='inlineWithoutBreaks' withTruncatedText content={topic} />
<MarkdownText pi={2} parseEmoji={true} variant='inlineWithoutBreaks' withTruncatedText content={topic} />
</HeaderSubtitle>
</HeaderContentRow>
)}
Expand Down

0 comments on commit 46c96d3

Please sign in to comment.