Warning Style
This commit is contained in:
@@ -12,8 +12,8 @@
|
||||
</LayoutView>
|
||||
</NotFound>
|
||||
</Router>
|
||||
|
||||
<MessageAlert/>
|
||||
|
||||
<MessageProvider />
|
||||
<ModalProvider Centered="true" />
|
||||
</Blazorise.ThemeProvider>
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
@{
|
||||
var divClass = $"{CssClass} pc-main";
|
||||
if (Prospect is { Complete: true }) divClass += " complete";
|
||||
if (Prospect is { Warning: true }) divClass += " warning";
|
||||
}
|
||||
|
||||
<div class="@divClass">
|
||||
|
||||
@@ -23,6 +23,12 @@
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.pc-main.warning {
|
||||
-webkit-box-shadow: 0 0 9px 4px rgba(214,100,23,0.87);
|
||||
-moz-box-shadow: 0 0 9px 4px rgba(214,100,23,0.87);
|
||||
box-shadow: 0 0 9px 4px rgba(214,100,23,0.87);
|
||||
}
|
||||
|
||||
.complete {
|
||||
background: #76ff003b;
|
||||
}
|
||||
Reference in New Issue
Block a user