aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/settings.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/settings.scss')
-rw-r--r--src/styles/settings.scss95
1 files changed, 95 insertions, 0 deletions
diff --git a/src/styles/settings.scss b/src/styles/settings.scss
index 76d167fd4..f16fc91fd 100644
--- a/src/styles/settings.scss
+++ b/src/styles/settings.scss
@@ -234,6 +234,10 @@
234 234
235 .settings__header-item { 235 .settings__header-item {
236 @extend %headline; 236 @extend %headline;
237
238 &__secondary {
239 padding-left: 5px
240 }
237 } 241 }
238 242
239 .separator { 243 .separator {
@@ -630,3 +634,94 @@
630 display: inline-block; 634 display: inline-block;
631 } 635 }
632} 636}
637
638.settings__updates__changelog-button {
639 margin-left: 2% !important;
640}
641
642.releasenotes__body {
643 line-height: 150%;
644
645 h1 {
646 margin-top: 0;
647 font-weight: 400;
648 font-size: xx-large;
649 text-align: center;
650 }
651
652 h2 {
653 margin-top: 10%;
654 font-weight: 400;
655 font-size: x-large;
656 text-align: center;
657 margin-bottom: 2%;
658 }
659
660 h3 {
661 margin-top: 5%;
662 font-weight: 400;
663 font-size: large;
664 text-align: center;
665 margin-bottom: 2%;
666 }
667
668 h4 {
669 margin-top: 5%;
670 font-weight: 400;
671 font-size: medium;
672 text-align: center;
673 margin-bottom: 2%;
674 }
675
676 h5 {
677 margin-top: 5%;
678 font-weight: 400;
679 text-align: center;
680 margin-bottom: 2%;
681 }
682
683 p {
684 margin-top: 4%;
685 margin-bottom: 4%;
686 user-select: text;
687 }
688
689 a {
690 color: rgb(0, 102, 255) !important;
691 user-select: text;
692 }
693
694 code {
695 background: #f4f4f4;
696 border: 1px solid #ddd;
697 border-radius: 5px;
698 padding: 0.2em 0.4em;
699 font-size: 85%;
700 color: #666;
701 font-family: monospace;
702 margin-bottom: 1.6em;
703 max-width: 100%;
704 overflow: auto;
705 user-select: text;
706 }
707
708 ul {
709 padding-left: 2rem;
710 }
711
712 li {
713 margin-top: 2%;
714 list-style-type: disc;
715 user-select: text;
716 }
717
718 img {
719 max-width: 100%;
720 margin-top: 2%;
721 margin-bottom: 2%;
722 align-items: center;
723 display: block;
724 margin-left: auto;
725 margin-right: auto;
726 }
727}