diff options
Diffstat (limited to 'templates/@theme-base/pm-styles/_pm-notifications.scss')
| -rw-r--r-- | templates/@theme-base/pm-styles/_pm-notifications.scss | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/templates/@theme-base/pm-styles/_pm-notifications.scss b/templates/@theme-base/pm-styles/_pm-notifications.scss index 93ed558..6215758 100644 --- a/templates/@theme-base/pm-styles/_pm-notifications.scss +++ b/templates/@theme-base/pm-styles/_pm-notifications.scss @@ -79,13 +79,21 @@ } -@include respond-to($breakpoint-small) { +@include respond-to($breakpoint-small) { .notifications-container { - left: 1em; - right: 1em; - -webkit-transform: none; - transform: none; - text-align: center; + text-align: center; } -}
\ No newline at end of file +} + +@include respond-to($breakpoint-tiny) { + + .notifications-container, + [class*="notification-"] { + -webkit-transform: none; + transform: none; + left: 1em; + right: 1em; + width: calc(100% - 2em); + } +} |
