Skip to content

Commit

Permalink
Merge pull request #842 from openedx/aansari/INF-990
Browse files Browse the repository at this point in the history
style: change feedback widget location
  • Loading branch information
awais-ansari authored Aug 8, 2023
2 parents 2e87f0b + dfadac0 commit 9b45aa3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,15 @@ $fa-font-path: "~font-awesome/fonts";
font-size: 18px;
}
}

.usabilla_live_button_container {
right: 0 !important;
}

@media (min-width: 768.98px) {
.usabilla_live_button_container {
right: -22px !important;
top: 50% !important;
transform: rotate(270deg) !important;
}
}
2 changes: 1 addition & 1 deletion src/notification-preferences/NotificationPreferenceApp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const NotificationPreferenceApp = ({ appId }) => {
return null;
}
return (
<Collapsible.Advanced open={appToggle} data-testid="notification-app">
<Collapsible.Advanced open={appToggle} data-testid="notification-app" className="mb-5">
<Collapsible.Trigger>
<div className="d-flex align-items-center">
<span className="mr-auto">
Expand Down
2 changes: 1 addition & 1 deletion src/notification-preferences/NotificationPreferences.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const NotificationPreferences = () => {
}

return (
<Container size="md" className="notification-preferences">
<Container size="sm" className="notification-preferences">
<h2 className="notification-heading mt-6 mb-5.5">
{intl.formatMessage(messages.notificationHeading)}
</h2>
Expand Down

0 comments on commit 9b45aa3

Please sign in to comment.