I try to assign a CSS class to navigation ( tag) under customer account page.
I found this file customer_account.xml, and I added <argument name="css_class" xsi:type="string">sidebar-navigation__item-link</argument>
to the block, as following
<block class="Magento\Customer\Block\Account\SortLinkInterface"
name="customer-account-navigation-address-link">
<arguments>
<argument name="css_class" xsi:type="string">sidebar-navigation__item-link</argument>
<argument name="label" xsi:type="string" translate="true">Address Book</argument>
<argument name="path" xsi:type="string">customer/addresss</argument>
<argument name="sortOrder" xsi:type="number">190</argument>
</arguments>
</block>
But this doesn't give any effect on the frontpage. I have cleared the cache.
Did I miss anything?