nbroad commited on
Commit
ba4a8aa
·
verified ·
1 Parent(s): dfae700

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +6 -8
index.html CHANGED
@@ -47,7 +47,7 @@
47
  display: grid;
48
  grid-template-columns: repeat(4, 1fr);
49
  gap: 1rem;
50
- align-items: end; /* This aligns items to bottom */
51
  }
52
  .input-group {
53
  display: flex;
@@ -62,11 +62,10 @@
62
  .token-link:hover {
63
  text-decoration: underline;
64
  }
65
- .input-wrapper {
66
- display: flex;
67
- flex-direction: column;
68
- justify-content: flex-end;
69
- height: 100%;
70
  }
71
  </style>
72
  </head>
@@ -80,8 +79,7 @@
80
  <input
81
  type="text"
82
  name="token"
83
- placeholder="WandB Token"
84
- required
85
  value="{{ token or '' }}"
86
  >
87
  </div>
 
47
  display: grid;
48
  grid-template-columns: repeat(4, 1fr);
49
  gap: 1rem;
50
+ align-items: end;
51
  }
52
  .input-group {
53
  display: flex;
 
62
  .token-link:hover {
63
  text-decoration: underline;
64
  }
65
+ .token-hint {
66
+ font-size: 0.8rem;
67
+ color: #666;
68
+ margin-top: 0.25rem;
 
69
  }
70
  </style>
71
  </head>
 
79
  <input
80
  type="text"
81
  name="token"
82
+ placeholder="WandB Token (not need for public runs)"
 
83
  value="{{ token or '' }}"
84
  >
85
  </div>