e2corporation commented on code in PR #3107:
URL: https://github.com/apache/incubator-devlake/pull/3107#discussion_r975657116
##########
config-ui/src/styles/nav.scss:
##########
@@ -17,11 +17,43 @@
position: fixed;
top: 0;
border-radius: 0;
- background: #ffffff;
box-shadow: none;
z-index: 1;
}
+.navbarMenuButton{
+ position: absolute;
+ display: none;
+ color: #7497F7;
+ &:hover {
+ color: #E8471C;
+ }
+
+ @media only screen and (max-width: 850px) {
+ display: flex;
+ left: 0px;
+ }
+}
+
+.navbarMenuButtonSidebarOpened{
+ position: absolute;
+ display: none;
+ color: #7497F7;
+ &:hover {
+ color: #E8471C;
+ }
+
+ @media only screen and (max-width: 850px) {
+ display: flex;
+ left: 240px;
+ }
+}
+
+.navbarItems{
Review Comment:
This css rule is missing a space before the opening bracket `{`
```suggestion
.navbarItems {
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]