Fix #72 - add follow/unfollow button to public profiles
This commit is contained in:
parent
87ba52ad3f
commit
3554d638b3
|
@ -0,0 +1,2 @@
|
|||
//= require jquery
|
||||
//= require jquery_ujs
|
|
@ -58,6 +58,13 @@
|
|||
}
|
||||
}
|
||||
|
||||
.controls {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.details {
|
||||
display: flex;
|
||||
margin-top: 30px;
|
||||
|
|
|
@ -16,6 +16,16 @@ class AccountsController < ApplicationController
|
|||
end
|
||||
end
|
||||