Skip to content
This repository was archived by the owner on Mar 8, 2024. It is now read-only.

Long embedding names that break modal for zero-shot fixed #13

Merged
merged 3 commits into from
Aug 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ <h1 class="text-lg text-gray-900 mb-2 text-center">Last Weak
<input type="checkbox" id="zero-shot-modal" class="modal-toggle">

<div class="modal">
<div class="modal-box text-black bg-white justify-center">
<div class="modal-box text-black bg-white justify-center max-w-4/5 min-w-1/2" style="width: fit-content">
<h1 class="text-lg text-gray-900 mb-2 text-center mb-4">Add new zero shot classification</h1>

<div *ngIf="attributes && labelingTasksClassification"
Expand Down
4 changes: 4 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ module.exports = {
"xxs": "9rem",
"xs-1": "250px",
...defaultTheme.maxWidth,
"4/5": "80%"
},
minWidth: {
"1/2": "50%"
},
lineHeight: {
'12': '3rem',
Expand Down