From 27b82fec822571926a24aa324961bf25d28bd2cd Mon Sep 17 00:00:00 2001 From: crisbeto Date: Thu, 19 Jul 2018 22:27:02 +0200 Subject: [PATCH] chore(autocomplete): fix image spacing on overview example Fixes the images on the autocomplete overview being flush against their text. --- .../autocomplete-overview/autocomplete-overview-example.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/material-examples/autocomplete-overview/autocomplete-overview-example.css b/src/material-examples/autocomplete-overview/autocomplete-overview-example.css index ab4bf7bd3dae..473fdf927580 100644 --- a/src/material-examples/autocomplete-overview/autocomplete-overview-example.css +++ b/src/material-examples/autocomplete-overview/autocomplete-overview-example.css @@ -10,4 +10,10 @@ .example-option-img { vertical-align: middle; + margin-right: 8px; +} + +[dir='rtl'] .example-option-img { + margin-right: 0; + margin-left: 8px; }