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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div
class="oc-notification z-1040 mb-2 w-md max-w-full"
class="oc-notification z-1040 w-md max-w-full"
:class="{
fixed: position !== 'default',
'top-2 left-2': position === 'top-left',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<section
class="relative z-[calc(var(--z-index-modal)+2)] w-full flex flex-wrap items-center justify-between my-2 text-role-on-chrome gap-2"
class="relative w-full flex flex-wrap items-center justify-between my-2 text-role-on-chrome gap-2"
>
<oc-text-input
v-if="chooseFileName"
Expand Down
2 changes: 1 addition & 1 deletion packages/web-runtime/src/components/MessageBar.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<oc-notifications>
<oc-notifications :class="{ 'mb-2': limitedMessages.length }">
<oc-notification-message
v-for="item in limitedMessages"
:key="item.id"
Expand Down
Loading