We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e33cf66 commit f83887cCopy full SHA for f83887c
app/view/netcreate/components/NCNode.css
@@ -123,6 +123,7 @@
123
/* Text Style */
124
.nccomponent .message {
125
font-size: 12px;
126
+ padding-bottom: 0.5rem;
127
}
128
.nccomponent .nodelabel .message {
129
font-size: 10px;
app/view/netcreate/components/NCNode.jsx
@@ -879,7 +879,9 @@ class NCNode extends UNISYS.Component {
879
{matchList}
880
</div>
881
)}
882
- {isDuplicate && <div className="message">{duplicateWarning}</div>}
+ {isDuplicate && (
883
+ <div className="message warning">{duplicateWarning}</div>
884
+ )}
885
886
{/* Special handling for `type` field */}
887
{defs['type'] && !defs['type'].hidden && (
0 commit comments