From 9c2757f1b4e0aa114142e7250518295060bc955d Mon Sep 17 00:00:00 2001 From: Eric Scott Date: Fri, 31 May 2024 13:17:14 -0700 Subject: [PATCH] add margin to bottom of code cell output (#21) --- NEWS.md | 7 +++++++ _extensions/uaz/theme.scss | 4 ++++ 2 files changed, 11 insertions(+) create mode 100644 NEWS.md diff --git a/NEWS.md b/NEWS.md new file mode 100644 index 0000000..42a1e91 --- /dev/null +++ b/NEWS.md @@ -0,0 +1,7 @@ +## uaz-revealjs (development version) +- Added 10px margin below code cell output (#21) +- Added this NEWS.md file! (#22) + +## uaz-revealjs v0.1.0 (2024-03-08) + +- Initial release of theme \ No newline at end of file diff --git a/_extensions/uaz/theme.scss b/_extensions/uaz/theme.scss index b3a2c97..2863ce4 100644 --- a/_extensions/uaz/theme.scss +++ b/_extensions/uaz/theme.scss @@ -33,6 +33,10 @@ $logo-height: 3.5rem !default; //add space between code and output .reveal div.sourceCode { + margin-bottom: 5px !important; +} + +.reveal div.cell-output { margin-bottom: 10px !important; }