0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-09 11:32:39 +00:00

upadte notification popup to handle markdown

This commit is contained in:
Víctor Losada Hernández
2025-01-31 11:52:46 +01:00
parent 899004cfaf
commit b6b23a787c
2 changed files with 38 additions and 7 deletions

View File

@@ -8,6 +8,7 @@
}
.notificationPopup {
font-size:17px;
position : relative;
width : 100%;
padding : 15px;
@@ -48,17 +49,46 @@
}
ul {
margin-top : 15px;
font-size : 0.8em;
font-size : 0.9em;
list-style-position : outside;
list-style-type : disc;
li {
margin-top : 1.4em;
font-size : 0.8em;
line-height : 1.4em;
margin-top : 1.2em;
font-size : 0.9em;
line-height : 1.2em;
padding-left: 1em;
em {
text-transform:capitalize;
font-weight : 800;
}
li { list-style-type: square;}
}
ul ul,ol ol,ul ol,ol ul {
margin-bottom : 0px;
margin-left : 1.5em;
}
}
}
/*Markdown styling*/
code {
background:#08115a;
padding: 0.1em 0.5em;
border-radius:2px;
font-family : 'Courier New', "Courier", monospace;
overflow-wrap : break-word;
white-space : pre-wrap;
}
pre code {
display : inline-block;
width : 100%;
}
.blank {
height : 1em;
margin-top : 0;
& + * { margin-top : 0; }
}
}