check out this image for reference
I need the text to be hidden and only display the icons when the sidebar menu is toggled and the sidebar container is collapsed
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<div class="sidebar">
<a th:href="@{/dashboard/}" class="sidebar-menu"><span class="fas fa-home"></span>Dashboard</a>
<a th:href="@{/profile/}" class="sidebar-menu"><span class="fas fa-user"></span>Admin Profile</a>
<a th:href="@{/notification/}" class="sidebar-menu"><span class="fas fa-bell"></span>Notifications</a>
<a th:href="@{/account/}" class="sidebar-menu"><span class="fas fa-users"></span>User Accounts</a>
<a th:href="@{/product/}" class="sidebar-menu"><span class="fas fa-list"></span>Product List</a>
<a th:href="@{/order/}" class="sidebar-menu"><span class="fas fa-shopping-cart"></span>Transactions</a>
<a th:href="@{/report/}" class="sidebar-menu"><span class="fas fa-chart-line"></span>Sales report</a>
</div>
Seeking assistance on how to achieve this