Skip to content

Commit

Permalink
chore: Fix format.
Browse files Browse the repository at this point in the history
  • Loading branch information
GSMLG-BOT committed Dec 3, 2022
1 parent 7ac1596 commit f420801
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
@@ -1,6 +1,6 @@
<p class="alert alert-info" role="alert"><%= get_flash(@conn, :info) %></p>
<p class="alert alert-danger" role="alert"><%= get_flash(@conn, :error) %></p>
<main class="container h-[calc(100vh-56px)] flex flex-row justify-start items-start overflow-auto">
<main class="container h-[calc(100vh-56px)] flex flex-row justify-start items-start overflow-hidden">
<.wc_left_menu
class="w-48 h-[calc(100vh-56px)]"
active={assigns[:active_menu]}
Expand Down
Expand Up @@ -23,6 +23,7 @@
</:logo>
<:user_profile>
(^_^)
<.wc_mdi name="github" class="w-12 h-12" />
</:user_profile>
</.wc_simple_appbar>
<% else %>
Expand Down
@@ -1,5 +1,5 @@

<.wc_card class="w-[100%_!important] h-[calc(100vh-56px-2em)_!important]">
<.wc_card class="w-[100%_!important] h-[calc(100vh-56px-2em)_!important] overflow-auto">
<:title class="flex flex-row justify-center items-center">
<span class="text-4xl text-blue-600 hover:text-blue-400">
PhxWCHook
Expand Down
@@ -1,11 +1,18 @@
<.wc_card class="w-[100%_!important] h-[calc(100vh-56px-2em)_!important]">
<.wc_card class="w-[100%_!important] h-[calc(100vh-56px-2em)_!important] overflow-auto">
<:title class="flex flex-row justify-center items-center">
<span class="text-4xl text-blue-600 hover:text-blue-400">
Material Design Icons
</span>
</:title>
<.wc_markdown>
</.wc_markdown>
<.wc_markdown content={"""
## Example

```html
<!-- icon_name is matrial icon name -->
<.wc_mdi name={icon_name} class="w-12 h-12" />
```

"""}></.wc_markdown>
<div class="flex flex-row flex-wrap gap-4">
<%= for icon_name <- @mdi_icons do %>
<div class="border flex flex-col w-40 h-40 items-center justify-center">
Expand Down

0 comments on commit f420801

Please sign in to comment.