This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="question"> | |
<div class="q-no">42. </div> | |
<div class="q-text">When the charge is reversed in a neuron during an action potential it is called</div> | |
<div class="answers"> | |
<div class="answer"> | |
<span class="answer-hole"></span> | |
<div class="opt">a)</div> | |
<div class="option">Polarization</div> | |
</div> | |
<div class="answer"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div { | |
font-family: Georgia; | |
font-size: 10pt; | |
} | |
h1 { | |
font-family: Helvetica; | |
} | |
img { | |
padding: 2em; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ApplicationController < ActionController::Base | |
after_action :clear_view_component_cache, if: -> { Rails.env.development? } | |
def clear_view_component_cache | |
ViewComponent::CompileCache.cache = Set.new | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%sl-alert.popup-toast{id: id, type: type, open: false, duration: duration, closable: true} | |
%sl-icon{slot: "icon", name: icon} | |
- if title.present? | |
%strong= title | |
%br | |
= text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.spreadsheet--search.grid.grid-flow-col.grid-cols-auto.gap-0.auto-cols-fr.pl-1.pr-8.hidden{ data: { controller: "spreadsheet--search", action: "toggle-search@window->spreadsheet--search#toggleSearch" }} | |
.input.col-span-9.p-2 | |
%sl-input.w-full(placeholder="Search" size="small" clearable pill){ data: { target: "spreadsheet--search.input"}} | |
%sl-icon(name="search" slot="prefix") | |
%sl-dropdown(slot="suffix" placement="bottom-end" hoist){ data: { target: "spreadsheet--search.dropdown"}} | |
%sl-button(slot="trigger" caret type="text" size="small"){ data: { target: "spreadsheet--search.trigger"}} Highlight | |
%sl-menu | |
%sl-menu-item{ data: { target: "spreadsheet--search.higlight"}, checked: true} Highlight | |
%sl-menu-item{ data: { target: "spreadsheet--search.filter"}} Filter |
OlderNewer