Commit ba8870dc authored by Marco Cavalli's avatar Marco Cavalli
Browse files

feat: same style for notes in table as the one used for notes in the text body

parent d4dbde24
Loading
Loading
Loading
Loading
+22 −7
Original line number Diff line number Diff line
@@ -118,10 +118,8 @@
  margin-top: 6pt;
  margin-bottom: 9pt;
}
.NO {
  padding-left: 12pt;
  padding-right: 12pt;
  margin-bottom: 9pt;
.NO,
.TAN {
  display: flex;
  gap: 12pt;
  border: 1px solid;
@@ -130,17 +128,34 @@
  border-radius: 3px;
}

.NO > p {
.NO {
  padding-left: 12pt;
  padding-right: 12pt;
  margin-bottom: 9pt;
}

.NO > p,
.TAN > p {
  margin: 0;
  padding: 0;
  white-space: pre-wrap;
}

.NO > p:first-of-type {
div > .TAN {
  margin-bottom: 6px;
}

div > .TAN:last-of-type {
  margin-bottom: 0;
}

.NO > p:first-of-type,
.TAN > p:first-of-type {
  white-space: nowrap;
}

.NO > div:first-of-type {
.NO > div:first-of-type,
.TAN > div:first-of-type {
  font-weight: 600;
}