diff --git a/docs/core/components/info-drawer-tab.component.md b/docs/core/components/info-drawer-tab.component.md
index 0804bf0b50..31707c6bb3 100644
--- a/docs/core/components/info-drawer-tab.component.md
+++ b/docs/core/components/info-drawer-tab.component.md
@@ -18,27 +18,28 @@ Render a tab with label:
```html
-
- Tab1 content
+
+ Tab1 content
-
- Tab2 content
+
+ Tab2 content
+
```
-Render tab with icon instead of labels:
+Render tab with icons instead of labels:
```html
-
- Tab1 content
+
+ Tab1 content
-
- Tab2 content
+
+ Tab2 content
@@ -46,6 +47,8 @@ Render tab with icon instead of labels:

+You can also combine `icon` and `label` properties.
+
## Class members
### Properties
diff --git a/lib/core/info-drawer/info-drawer.component.html b/lib/core/info-drawer/info-drawer.component.html
index 1c0b7c2072..9b19b524e9 100644
--- a/lib/core/info-drawer/info-drawer.component.html
+++ b/lib/core/info-drawer/info-drawer.component.html
@@ -8,13 +8,14 @@
-
-
-
- {{ contentBlock.icon }}
- {{ contentBlock.label }}
-
-
+
+
+
+ {{ contentBlock.icon }}
+ {{ contentBlock.label }}
+
diff --git a/lib/core/info-drawer/info-drawer.component.scss b/lib/core/info-drawer/info-drawer.component.scss
index 6d900442bf..cb0f1ab87d 100644
--- a/lib/core/info-drawer/info-drawer.component.scss
+++ b/lib/core/info-drawer/info-drawer.component.scss
@@ -1,7 +1,12 @@
.adf {
+
&-info-drawer {
display: block;
+ .mat-tab-label {
+ min-width: 0;
+ }
+
& &-layout {
&-content {