Skip to content

Commit a327093

Browse files
authored
Merge pull request #84 from oslabs-beta/kyler/jestTest
feat: Jest Tests for ModelVersionClient and ModelManager
2 parents 4af4473 + f813272 commit a327093

File tree

9 files changed

+825
-503
lines changed

9 files changed

+825
-503
lines changed

mlflow-site/src/app/documentation/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1567,7 +1567,7 @@ export default function Documentation() {
15671567
>
15681568
https://mlflow.org/docs/latest/rest-api.html
15691569
</a>
1570-
)
1570+
).
15711571
</span>
15721572
<div id='experimentClientHeader' className='methodsHeader2'>
15731573
Experiment Client Methods

mlflow-site/src/app/favicon.ico

-21.1 KB
Binary file not shown.

mlflow-site/src/app/globals.css

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -177,15 +177,18 @@ body {
177177
grid-column: 2/5;
178178
grid-row: 3;
179179
width: 100%;
180+
display: flex;
181+
flex-direction: column;
180182
}
181183

182184
.homeButton {
183185
padding: clamp(0.1875rem, 0.830625vw, 0.328125rem);
184186
padding-left: clamp(0.375rem, 1.66125vw, 0.65625rem);
185187
padding-right: clamp(0.375rem, 1.66125vw, 0.65625rem);
188+
padding-top: clamp(0.375rem, 1.66125vw, 0.65625rem);
189+
padding-bottom: clamp(0.375rem, 1.66125vw, 0.65625rem);
186190
border-radius: clamp(0.3125rem, 1.384375vw, 0.546875rem);
187-
font-size: clamp(0.8rem, 3.544vw, 1.05rem);
188-
margin-right: 8px;
191+
font-size: clamp(0.8rem, 3.544vw, 1.6rem);
189192
}
190193

191194
.homeButton:hover {
@@ -194,18 +197,17 @@ body {
194197

195198
.homeButtonDownload {
196199
background-color: rgb(66, 107, 31);
197-
padding-top: clamp(0.375rem, 1.66125vw, 0.65625rem);
198-
padding-bottom: clamp(0.375rem, 1.66125vw, 0.65625rem);
200+
margin-right: 8px;
199201
}
200202

201203
.homeButtonRead {
202204
background-color: rgb(204, 204, 204);
203-
padding-top: clamp(0.375rem, 1.66125vw, 0.65625rem);
204-
padding-bottom: clamp(0.375rem, 1.66125vw, 0.65625rem);
205205
}
206206

207-
.button {
208-
width: 100%;
207+
@media (min-width: 1000px) {
208+
.button {
209+
align-self: center;
210+
}
209211
}
210212

211213
.features {

0 commit comments

Comments
 (0)