Skip to content

Commit b327851

Browse files
committed
feat(dockerfile): add button for Dockerfile dialog
1 parent 347e201 commit b327851

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/components/tag-history/tag-history.riot

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
2929
<i class="material-icons">arrow_back</i>
3030
</material-button>
3131
<h2>History of { props.image }:{ props.tag } <i class="material-icons">history</i></h2>
32+
<material-button
33+
text-color="var(--accent-text)"
34+
color="inherit"
35+
waves-color="var(--hover-background)"
36+
waves-center="true"
37+
rounded="true"
38+
outlined
39+
>
40+
Dockerfile
41+
</material-button>
3242
</div>
3343
</material-card>
3444
<div if="{ !state.loadend }" class="spinner-wrapper">
@@ -238,4 +248,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
238248
return res;
239249
};
240250
</script>
251+
<style>
252+
h2 {
253+
flex-grow: 1;
254+
display: flex;
255+
flex-direction: row;
256+
align-items: center;
257+
}
258+
</style>
241259
</tag-history>

0 commit comments

Comments
 (0)