Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
yujonglee committed Oct 8, 2024
1 parent 8ddd803 commit 7c009c0
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 @@ -7,7 +7,7 @@ defmodule CanaryWeb.SourceLive.WebpageCrawlerPreview do
def render(assigns) do
~H"""
<div>
<Primer.box is_condensed is_scrollable style="max-height: calc(100vh - 200px)">
<Primer.box is_condensed is_scrollable style="max-height: calc(100vh - 300px)">
<:header_title class="flex-auto">
<div class="flex items-center gap-1">
<span><%= length(@items) %> found</span>
Expand Down
4 changes: 2 additions & 2 deletions js/apps/docs/components/BlogPosts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import { data as posts } from "../data/blog_posts.data";
<template>
<ul>
<a :href="post.url" v-for="post of posts">
<li class="flex flex-row items-center justify-between">
<li class="flex justify-between">
<span>{{ post.title }}</span>
<span class="text-sm">{{ post.date.string }}</span>
<span class="text-sm leading-loose">{{ post.date.string }}</span>
</li>
</a>
</ul>
Expand Down

0 comments on commit 7c009c0

Please sign in to comment.