|
|
|
|
|
by murukesh_s
323 days ago
|
|
This is like repeating code without using a function. If you have a nice abstraction - the same becomes cleaner like below. <div class="group card"> <div class="flex items-center justify-between mb-4">
<h3 class="card-title">Team Settings</h3>
</div>
<p class="card-description">
Manage your team permissions, invites, roles, and integrations here. Changes apply instantly across all team workspaces.
</p>
<div class="flex flex-col sm:flex-row gap-4 sm:justify-end">
<button class="btn btn-cancel">Cancel</button>
<button class="btn btn-save">Save Changes</button>
</div>
</div> |
|