l-min-components 1.7.1365 → 1.7.1366

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "l-min-components",
3
- "version": "1.7.1365",
3
+ "version": "1.7.1366",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/assets",
@@ -63,6 +63,10 @@ export const CenterLayout = styled.div`
63
63
  @media screen and (max-width: 1023px) {
64
64
  margin-right: 0;
65
65
  }
66
+ @media screen and (max-width: 1366px) {
67
+ margin: ${({ isOpen }) =>
68
+ isOpen ? "0px 200px 0 276px" : "0px 202px 0 145px"};
69
+ }
66
70
  .instructor_expired {
67
71
  h1 {
68
72
  font-weight: 700;
@@ -115,6 +119,9 @@ export const RightLayout = styled.div`
115
119
  @media screen and (max-width: 1023px) {
116
120
  display: none;
117
121
  }
122
+ @media screen and (max-width: 1366px) {
123
+ max-width: 192px;
124
+ }
118
125
  > div {
119
126
  width: 100%;
120
127
  }
@@ -5,6 +5,11 @@ export const SideMenuContainer = styled.div`
5
5
  position: fixed;
6
6
 
7
7
  width: ${({ isOpen }) => (isOpen ? "239px" : "48px")};
8
+
9
+ @media screen and (max-width: 1366px) {
10
+ width: ${({ isOpen }) => (isOpen ? "180px" : "48px")};
11
+ }
12
+
8
13
  height: 625px;
9
14
  // max-height: 609px;
10
15
  display: flex;
@@ -141,6 +146,10 @@ export const TextContainer = styled.div`
141
146
  letter-spacing: 0.32px;
142
147
  font-weight: 600;
143
148
  color: inherit;
149
+
150
+ @media screen and (max-width: 1366px) {
151
+ font-size: 14px;
152
+ }
144
153
  `;
145
154
 
146
155
  export const NotificationCount = styled.div`