🌐 AI搜索 & 代理 主页
Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix border
  • Loading branch information
levkk committed May 10, 2024
commit d80c42955552f7c5d675a914575ec9a2e369c2e0
7 changes: 7 additions & 0 deletions pgml-dashboard/src/components/pages/demo/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,4 +220,11 @@
.tooltip_html("A model is great<br>, but<br> two<br> is better.")
.icon("help_outline") %>
</div>

<div class="py-5 d-flex gap-2">
<button class="btn btn-primary-web-app">Primary button</button>
<button class="btn btn-primary-web-app" disabled>Primary disabled</button>
<button class="btn btn-secondary-web-app">Secondary button</button>
<button class="btn btn-secondary-web-app" disabled>Secondary button</button>
</div>
</div>
5 changes: 2 additions & 3 deletions pgml-dashboard/static/css/scss/components/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,8 @@

&:disabled,
&.disabled {
--bs-btn-color: #{$neon-shade-400};
--bs-btn-bg: #{$neon-shade-700};
--bs-btn-border-color: #{$neon-shade-700};
color: #{$neon-shade-400};
background-color: #{$neon-shade-700};
}

&:hover,
Expand Down