mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
Convert styling and layout to bootstrap
This commit is contained in:
parent
3c26deda30
commit
34f15cc407
@ -1,42 +1,17 @@
|
||||
|
||||
{{define "content"}}
|
||||
<div class="row">
|
||||
<div class="col messageCol">
|
||||
<div class="alert messageCard {{.MsgType}}" role="alert">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-4">
|
||||
<div class="alert {{.MsgType}} p-3 text-center fs-3" role="alert">
|
||||
{{if eq .MsgType "alert-info"}}
|
||||
<i class="bi-info-circle-fill messageIcon"></i>
|
||||
<b>{{.Message}}</b>
|
||||
<i class="bi-info-circle-fill me-3"></i>
|
||||
{{else if eq .MsgType "alert-warning"}}
|
||||
<i class="bi-question-circle-fill messageIcon"></i>
|
||||
<b>{{.Message}}</b>
|
||||
<i class="bi-question-circle-fill me-3"></i>
|
||||
{{else if eq .MsgType "alert-danger"}}
|
||||
<i class="bi-exclamation-circle-fill messageIcon"></i>
|
||||
<b>{{.Message}}</b>
|
||||
<i class="bi-exclamation-circle-fill me-3"></i>
|
||||
{{end}}
|
||||
{{.Message}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
|
||||
{{define "stylesheets"}}
|
||||
<style>
|
||||
.messageCol {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.messageCard {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 50%;
|
||||
padding-top: 2rem;
|
||||
padding-bottom: 2rem;
|
||||
}
|
||||
|
||||
.messageIcon {
|
||||
font-size: 2rem;
|
||||
margin-right:1rem;
|
||||
}
|
||||
</style>
|
||||
{{end}}
|
Loading…
Reference in New Issue
Block a user