mirror of
https://github.com/ClaperCo/Claper.git
synced 2026-05-18 05:05:39 +02:00
Fix quotes format
This commit is contained in:
@@ -175,35 +175,35 @@
|
||||
<button
|
||||
phx-click="change_tab"
|
||||
phx-value-tab="messages"
|
||||
class={"whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm #{if @current_tab == :messages, do: 'border-primary-500 text-primary-600', else: 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'}"}
|
||||
class={"whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm #{if @current_tab == :messages, do: "border-primary-500 text-primary-600", else: "border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300"}"}
|
||||
>
|
||||
<%= gettext("Messages") %>
|
||||
</button>
|
||||
<button
|
||||
phx-click="change_tab"
|
||||
phx-value-tab="polls"
|
||||
class={"whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm #{if @current_tab == :polls, do: 'border-primary-500 text-primary-600', else: 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'}"}
|
||||
class={"whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm #{if @current_tab == :polls, do: "border-primary-500 text-primary-600", else: "border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300"}"}
|
||||
>
|
||||
<%= gettext("Polls") %>
|
||||
</button>
|
||||
<button
|
||||
phx-click="change_tab"
|
||||
phx-value-tab="forms"
|
||||
class={"whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm #{if @current_tab == :forms, do: 'border-primary-500 text-primary-600', else: 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'}"}
|
||||
class={"whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm #{if @current_tab == :forms, do: "border-primary-500 text-primary-600", else: "border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300"}"}
|
||||
>
|
||||
<%= gettext("Forms") %>
|
||||
</button>
|
||||
<button
|
||||
phx-click="change_tab"
|
||||
phx-value-tab="web_content"
|
||||
class={"whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm #{if @current_tab == :web_content, do: 'border-primary-500 text-primary-600', else: 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'}"}
|
||||
class={"whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm #{if @current_tab == :web_content, do: "border-primary-500 text-primary-600", else: "border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300"}"}
|
||||
>
|
||||
<%= gettext("Web Content") %>
|
||||
</button>
|
||||
<button
|
||||
phx-click="change_tab"
|
||||
phx-value-tab="quizzes"
|
||||
class={"whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm #{if @current_tab == :quizzes, do: 'border-primary-500 text-primary-600', else: 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'}"}
|
||||
class={"whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm #{if @current_tab == :quizzes, do: "border-primary-500 text-primary-600", else: "border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300"}"}
|
||||
>
|
||||
<%= gettext("Quizzes") %>
|
||||
</button>
|
||||
|
||||
Reference in New Issue
Block a user