Skip to content

Commit c85e330

Browse files
authored
Merge pull request #113 from cmu-delphi/staging
Staging
2 parents f1352a2 + d2522cd commit c85e330

File tree

60 files changed

+2146
-1237
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+2146
-1237
lines changed

src/assets/css/style.css

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1386,3 +1386,39 @@ h6 {
13861386
.form-check > label.form-check-label {
13871387
display: block!important; /* Ensure the label takes up the full width */
13881388
}
1389+
1390+
.min-w-300 {
1391+
content: '';
1392+
min-width: 300px;
1393+
}
1394+
1395+
div.dt-button-collection {
1396+
width: 265px!important;
1397+
}
1398+
1399+
.full-width {
1400+
width: 100%;
1401+
}
1402+
1403+
#processSelectedSignals {
1404+
width: 50%;
1405+
margin-left: auto;
1406+
margin-right: auto;
1407+
}
1408+
1409+
1410+
.loader {
1411+
border: 16px solid #f3f3f3; /* Light grey */
1412+
border-top: 16px solid #3498db; /* Blue */
1413+
border-radius: 50%;
1414+
width: 120px!important;
1415+
height: 120px;
1416+
animation: spin 2s linear infinite;
1417+
margin-left: auto;
1418+
margin-right: auto;
1419+
}
1420+
1421+
@keyframes spin {
1422+
0% { transform: rotate(0deg); }
1423+
100% { transform: rotate(360deg); }
1424+
}

0 commit comments

Comments
 (0)