We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 893e958 + 5bc54b6 commit 62c49d7Copy full SHA for 62c49d7
src/app/clients/clients-view/general-tab/general-tab.component.scss
@@ -32,10 +32,19 @@
32
}
33
34
.heading-content {
35
+ display: flex; /* Use flexbox for alignment */
36
+ align-items: center; /* Align items vertically */
37
+ justify-content: space-between; /* Space out title and buttons */
38
margin-bottom: 1%;
39
margin-top: 1%;
40
41
42
.heading-name {
- display: block;
43
+ margin: 0; /* Reset margin to avoid misalignment */
44
+}
45
+
46
+.layout-row.align-flex-end {
47
+ display: flex;
48
+ align-items: center; /* Ensure buttons are vertically aligned */
49
+ gap: 0.5rem; /* Add spacing between buttons if needed */
50
0 commit comments