aicfe-answer-card 0.2.16 → 0.2.18

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,7 +1,7 @@
1
1
  {
2
2
  "name": "aicfe-answer-card",
3
3
  "private": false,
4
- "version": "0.2.16",
4
+ "version": "0.2.18",
5
5
  "description": "edu answer card for aicfe",
6
6
  "keywords": [
7
7
  "aicfe",
@@ -76,14 +76,28 @@
76
76
  justify-content: center;
77
77
  align-items: center;
78
78
  padding-bottom: 30px;
79
+ position: relative;
79
80
  &.is-lattice__no-padding {
80
81
  padding-bottom: 0px;
81
82
  }
83
+
84
+ .ac-info__qrcode-placeholder {
85
+ flex: 0 0 80px;
86
+ width: 80px;
87
+ height: 80px;
88
+ box-sizing: border-box;
89
+ position: relative;
90
+ left: -52px; // X: 160
91
+ top: 2px; // Y: 40
92
+ }
93
+
82
94
  .ac-info__area {
95
+ --columns: 3;
96
+
83
97
  .info-area__three--column {
84
98
  width: 100%;
85
99
  display: grid;
86
- grid-template-columns: repeat(3, 1fr);
100
+ grid-template-columns: repeat(var(--columns), 1fr);
87
101
  justify-items: center;
88
102
  padding-left: 0;
89
103
  column-gap: 16px;