Update templates/customer_details.html
Browse files
templates/customer_details.html
CHANGED
@@ -20,6 +20,7 @@
|
|
20 |
.header {
|
21 |
display: flex;
|
22 |
align-items: center;
|
|
|
23 |
margin-bottom: 20px;
|
24 |
}
|
25 |
.back-btn {
|
@@ -67,7 +68,7 @@
|
|
67 |
.change-btn, .copy-btn {
|
68 |
position: absolute;
|
69 |
right: 10px;
|
70 |
-
top:
|
71 |
transform: translateY(-50%);
|
72 |
color: #FF0000;
|
73 |
font-size: 0.75rem;
|
@@ -76,7 +77,6 @@
|
|
76 |
text-transform: uppercase;
|
77 |
padding: 5px 8px;
|
78 |
border-radius: 5px;
|
79 |
-
background-color: rgba(255, 255, 255, 0.8);
|
80 |
transition: opacity 0.3s ease;
|
81 |
display: flex;
|
82 |
align-items: center;
|
@@ -88,7 +88,6 @@
|
|
88 |
.change-btn.disabled {
|
89 |
color: #A9A9A9;
|
90 |
cursor: not-allowed;
|
91 |
-
background-color: rgba(255, 255, 255, 0.5);
|
92 |
}
|
93 |
.copy-btn svg {
|
94 |
width: 12px;
|
@@ -132,6 +131,7 @@
|
|
132 |
.change-btn, .copy-btn {
|
133 |
font-size: 0.7rem;
|
134 |
padding: 4px 6px;
|
|
|
135 |
}
|
136 |
.copy-btn svg {
|
137 |
width: 10px;
|
|
|
20 |
.header {
|
21 |
display: flex;
|
22 |
align-items: center;
|
23 |
+
justify-content: flex-start;
|
24 |
margin-bottom: 20px;
|
25 |
}
|
26 |
.back-btn {
|
|
|
68 |
.change-btn, .copy-btn {
|
69 |
position: absolute;
|
70 |
right: 10px;
|
71 |
+
top: 70%; /* Moved further down */
|
72 |
transform: translateY(-50%);
|
73 |
color: #FF0000;
|
74 |
font-size: 0.75rem;
|
|
|
77 |
text-transform: uppercase;
|
78 |
padding: 5px 8px;
|
79 |
border-radius: 5px;
|
|
|
80 |
transition: opacity 0.3s ease;
|
81 |
display: flex;
|
82 |
align-items: center;
|
|
|
88 |
.change-btn.disabled {
|
89 |
color: #A9A9A9;
|
90 |
cursor: not-allowed;
|
|
|
91 |
}
|
92 |
.copy-btn svg {
|
93 |
width: 12px;
|
|
|
131 |
.change-btn, .copy-btn {
|
132 |
font-size: 0.7rem;
|
133 |
padding: 4px 6px;
|
134 |
+
top: 70%; /* Maintain downward position */
|
135 |
}
|
136 |
.copy-btn svg {
|
137 |
width: 10px;
|