Skip to content
Snippets Groups Projects
Commit a1e8928d authored by Loïc Correnson's avatar Loïc Correnson Committed by David Bühler
Browse files

[ivette] fix empty global infos

parent adfce1d8
No related branches found
No related tags found
No related merge requests found
......@@ -257,15 +257,15 @@ export default function Globals(): JSX.Element {
const noFunction =
<div className='dome-xSideBarSection-content'>
<label className='dome-xSideBarSection-info'>
{'There is no function to display.'}
<label className='globals-info'>
There is no function to display.
</label>
</div>;
const allFiltered =
<div className='dome-xSideBarSection-content'>
<label className='dome-xSideBarSection-info'>
{'All functions are filtered. Try adjusting function filters.'}
<label className='globals-info'>
All functions are filtered. Try adjusting function filters.
</label>
<Button {...filterButtonProps} label='Functions filters' />
</div>;
......
......@@ -56,6 +56,14 @@
/* --- Globals --- */
/* -------------------------------------------------------------------------- */
.globals-info {
color: var(--info-text-discrete);
font-style: italic;
padding-left: 20px;
padding-right: 10px;
display: block;
}
.globals-main label {
text-decoration: underline;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment