Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/design-system/src/components/OcCard/OcCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const hasSlotFooter = computed(() => {

@layer components {
.oc-card {
@apply bg-role-surface text-role-on-surface rounded-sm relative;
@apply bg-role-surface text-role-on-surface rounded-md relative;
}

.oc-card-header {
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app-app-store/src/components/AppTags.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:key="`app-tag-${app.id}-${tag}`"
data-testid="tag-button"
size="small"
class="whitespace-nowrap"
class="whitespace-nowrap cursor-pointer"
type="button"
@click="emitClick(tag)"
>
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app-app-store/src/components/AppTile.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<oc-card
tag="li"
class="app-tile bg-role-surface-container flex flex-col border h-full overflow-hidden shadow-none"
class="app-tile bg-role-surface-container flex flex-col border overflow-hidden shadow-none"
header-class="p-0"
>
<template #header>
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app-app-store/src/views/AppDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</router-link>
<app-image-gallery :app="app" :show-pagination="true" class="w-full" />
</template>
<div class="app-content bg-role-surface-container flex flex-col p-4">
<div class="app-content bg-role-surface-container flex flex-col">
<div class="flex items-center">
<h2 class="my-2 truncate app-details-title">{{ app.name }}</h2>
<span class="ml-2 text-role-on-surface-variant text-sm mt-2">
Expand Down
5 changes: 2 additions & 3 deletions packages/web-app-app-store/src/views/AppList.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<template>
<div class="mb-4">
<div>
<h2 class="mt-0 app-list-headline">
{{ $gettext('App Store') }}
<app-contextual-helper />
</h2>
<div class="flex items-center">
<div class="flex items-center mb-4">
<oc-text-input
id="apps-filter"
:model-value="filterTermInput"
Expand All @@ -24,7 +24,6 @@
v-for="app in filteredApps"
:key="`app-${app.repository.name}-${app.id}`"
:app="app"
class="my-4"
@search="setFilterTerm"
/>
</oc-list>
Expand Down
3 changes: 3 additions & 0 deletions packages/web-pkg/src/components/TextEditor/TextEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@ export default defineComponent({
background-color: var(--oc-role-surface-container);
}
}
#text-editor-preview-component {
background-color: transparent;
}

// overwrite md-editor styles
.md-editor {
Expand Down