Skip to content

Commit 4b0f727

Browse files
committed
styling/Underline anchor elements
1 parent 580d88f commit 4b0f727

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

app/javascript/controllers/codemirror_controller.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ export default class extends Controller {
1313
}
1414

1515
connect() {
16-
console.log('l', this.modesValue)
1716
if (this.shouldInitialize()) {
1817
this.initializeCodeMirror()
1918
this.setCodeMirrorValue()

app/views/shared/_connect.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<% if @users_for_connect.any? %>
22
<%= render 'shared/cards/card_no_padding' do %>
33
<h4 class="text-center pt-2">
4-
<%= link_to 'Connect', connect_path, title: 'Search for people to connect with' %>
4+
<%= link_to 'Connect', connect_path, title: 'Search for people to connect with', class: 'hover:underline' %>
55
</h4>
66

77
<ul class="divide-y divide-gray-200" data-infinite-scroll-window-target="entries" data-action="scroll@window->infinite-scroll-window#scroll">

app/views/users/_connect.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<div class="min-w-0">
1212
<div>
1313
<div class="text-sm">
14-
<%= link_to user.name, user_path(user), class: "font-medium text-gray-900" %>
14+
<%= link_to user.name, user_path(user), class: "hover:underline font-bold font-medium text-gray-900" %>
1515
</div>
1616
</div>
1717
<div class="mt-1 text-sm text-gray-700">

0 commit comments

Comments
 (0)