Skip to content

Commit

Permalink
🔥Removing hard-coded styles & only
Browse files Browse the repository at this point in the history
  • Loading branch information
MiloradFilipovic committed Dec 27, 2024
1 parent 148dc04 commit 14f52d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const components = {
};

describe('IconPicker', () => {
it.only('renders icons and emojis', async () => {
it('renders icons and emojis', async () => {
const { getByTestId, getAllByTestId } = render(IconPicker, {
props: {
modelValue: { type: 'icon', value: 'smile' },
Expand Down
4 changes: 2 additions & 2 deletions packages/editor-ui/src/components/Projects/ProjectIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const props = withDefaults(defineProps<Props>(), {
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--color-foreground-light);
border: var(--border-width-base) var(--border-style-base) var(--color-foreground-light);
border-radius: var(--border-radius-base);
&.round {
Expand All @@ -57,7 +57,7 @@ const props = withDefaults(defineProps<Props>(), {
}
.large {
// Making this inline with user avatar size
// Making this in line with user avatar size
width: 40px;
height: 40px;
Expand Down

0 comments on commit 14f52d4

Please sign in to comment.