mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-11 23:44:23 +08:00
Consistent bottom of page spacing
This commit is contained in:
parent
9fa8fcef1b
commit
7e3f60e8b8
2 changed files with 3 additions and 3 deletions
|
@ -86,11 +86,11 @@ defmodule LivebookWeb.LearnLive do
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="mt-4 mb-20">
|
<div class="mt-3 mb-20">
|
||||||
<ul>
|
<ul>
|
||||||
<li
|
<li
|
||||||
:for={{notebook_info, number} <- Enum.with_index(@group_info.notebook_infos, 1)}
|
:for={{notebook_info, number} <- Enum.with_index(@group_info.notebook_infos, 1)}
|
||||||
class="py-4 flex flex-row items-center space-x-5 border-b border-gray-200 last:border-b-0"
|
class="py-3 flex flex-row items-center space-x-5 border-b border-gray-200 last:border-b-0"
|
||||||
>
|
>
|
||||||
<div class="text-lg text-gray-400 font-semibold">
|
<div class="text-lg text-gray-400 font-semibold">
|
||||||
<%= number |> Integer.to_string() |> String.pad_leading(2, "0") %>
|
<%= number |> Integer.to_string() |> String.pad_leading(2, "0") %>
|
||||||
|
|
|
@ -136,7 +136,7 @@ defmodule LivebookWeb.SettingsLive do
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- User settings section -->
|
<!-- User settings section -->
|
||||||
<div class="flex flex-col space-y-10">
|
<div class="flex flex-col space-y-10 pb-8">
|
||||||
<div>
|
<div>
|
||||||
<LayoutHelpers.title text="User settings" />
|
<LayoutHelpers.title text="User settings" />
|
||||||
<p class="mt-4 text-gray-700">
|
<p class="mt-4 text-gray-700">
|
||||||
|
|
Loading…
Add table
Reference in a new issue