|
|
@@ -2,6 +2,7 @@
|
|
|
@use '@growi/core-styles/scss/variables/growi-official-colors';
|
|
|
@use '~/styles/variables' as var;
|
|
|
@use '../button-styles';
|
|
|
+@use '~/styles/mixins';
|
|
|
|
|
|
// GROWI Logo
|
|
|
.grw-app-title :global {
|
|
|
@@ -25,6 +26,22 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+// == GROWI Logo when Editor mode
|
|
|
+@include mixins.at-editing() {
|
|
|
+ @include bs.media-breakpoint-up(xl) {
|
|
|
+ .grw-app-title :global {
|
|
|
+ .grw-logo {
|
|
|
+ opacity: 0.5;
|
|
|
+ transition: opacity 0.8s ease;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
// == Location
|
|
|
.on-subnavigation {
|