Skip to content

Commit

Permalink
Add border radius only on desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
donnapep committed Oct 4, 2023
1 parent 91280a1 commit dbbdbdc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions assets/css/3rd-party/themes/course/learning-mode.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import '~@wordpress/base-styles/breakpoints';
@import "questions";
@import "quiz";

Expand Down Expand Up @@ -257,8 +258,6 @@ body {
}

.sensei-course-theme-quiz-graded-notice {
border-radius: 4px;

&__text {
margin: 0 0 32px;
}
Expand All @@ -273,6 +272,10 @@ body {
}
}
}

@media (min-width: $break-medium) {
border-radius: 4px;
}
}

/* Modern Template */
Expand Down

0 comments on commit dbbdbdc

Please sign in to comment.