diff --git a/packages/theme/styles/_layouts.scss b/packages/theme/styles/_layouts.scss index d51ea45ac2..5b347ccc0d 100644 --- a/packages/theme/styles/_layouts.scss +++ b/packages/theme/styles/_layouts.scss @@ -187,6 +187,7 @@ p:last-child { margin-block-end: 0; } .ml-3 { margin-left: .75rem; } .ml-4 { margin-left: 1rem; } .mr-1 { margin-right: .25rem; } +.mr-2 { margin-right: .5rem; } .mr-4 { margin-right: 1rem; } .mr-8 { margin-right: 2rem; } .mt-2 { margin-top: .5rem; } diff --git a/packages/ui/lang/en.json b/packages/ui/lang/en.json index 37bb89c5c1..9c69d8cf34 100644 --- a/packages/ui/lang/en.json +++ b/packages/ui/lang/en.json @@ -3,6 +3,7 @@ "Cancel": "Cancel", "Minutes": "{minutes, plural, =0 {less than a minute ago} =1 {a minute ago} other {# minutes ago}}", "Hours": "{hours, plural, =0 {less than an hour ago} =1 {an hour ago} other {# hours ago}}", - "Days": "{days, plural, =0 {today} =1 {yesterday} other {# days ago}}" + "Days": "{days, plural, =0 {today} =1 {yesterday} other {# days ago}}", + "Clear": "Clear" } } diff --git a/packages/ui/src/components/ActionIcon.svelte b/packages/ui/src/components/ActionIcon.svelte index 69543866cf..7bfe3cd330 100644 --- a/packages/ui/src/components/ActionIcon.svelte +++ b/packages/ui/src/components/ActionIcon.svelte @@ -44,6 +44,7 @@ .button { color: var(--theme-caption-color); border-radius: .125rem; + cursor: pointer; .icon { // transform-origin: center center; diff --git a/packages/ui/src/components/EditWithIcon.svelte b/packages/ui/src/components/EditWithIcon.svelte index 30b5290902..1c380abcf2 100644 --- a/packages/ui/src/components/EditWithIcon.svelte +++ b/packages/ui/src/components/EditWithIcon.svelte @@ -12,57 +12,61 @@ // See the License for the specific language governing permissions and // limitations under the License. --> + -