Updated view with validation button

This commit is contained in:
efarooqui
2020-08-21 09:38:23 -07:00
parent 1971128b18
commit b5d922ef16

View File

@@ -9,6 +9,7 @@
</div> </div>
{{#each urls}} {{#each urls}}
<div><a target="_blank" href="http://localhost:4040{{ this }}">{{ this }}</a></div> <div><a target="_blank" href="http://localhost:4040{{ this }}">{{ this }}</a></div>
<div class="bp-validate-button" target="_blank" href="http://localhost:4040{{ this }}">Validate</div>
{{/each}} {{/each}}
</div> </div>
{{ else }} {{ else }}
@@ -25,6 +26,7 @@
:root { :root {
--grey: #8a8a8a; --grey: #8a8a8a;
--btn-width: 200px; --btn-width: 200px;
--validate-btn-width: 150px;
} }
.main-container { .main-container {
display: flex; display: flex;
@@ -79,6 +81,21 @@
color: black; color: black;
} }
.bp-validate-button {
transition: all 0.3s ease;
text-transform: uppercase;
font-size: 12pt;
font-weight: bold;
width: var(--validate-btn-width);
display: flex;
justify-content: center;
align-items: center;
border: 3px solid red;
padding: .5em;
text-decoration: none;
color: red;
}
.bp-update-container:hover { .bp-update-container:hover {
background-color: black; background-color: black;
transition: all 0.3s ease; transition: all 0.3s ease;